Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Assuming we are using an array implementation of a stack and not a linked-list implementation.
ではない正確に。むしろ、スタックコレクションを配列のラッパーとして見ることができます。
配列は固定サイズで割り当てられますが、スタックはそれに追加されたデータとともに大きくなります。通常、これは最初に小さな配列を割り当て、データが現在の配列を超えたときに大きな配列を割り当てることによって行われます。