class Stack { int data_array[ ]; // 堆疊陣列 int top; // 堆疊頂端指標 int n; ... class Node //節點 { int data; Node link; } 以串列來實作堆疊的基本動作 1.
確定! 回上一頁