#データがの一番上に値を入れる:push(n)
#nは入れる値
#データの一番上から値を取り除く+表示する :pop()
push(5)
push(6)
pop()
>>6
#emptyからpop()しようとすると、'stuck underflow'エラーとなり、
上限以上にpush(n)しようとすると、'stuck overflow'エラーとなる。
push(7)
pop()
pop()
>>stuck underflow
#peekを使うと、削除せずに一番上から値を表示できる。
push(5)
peek()
>>5
More than 3 years have passed since last update.
Register as a new user and use Qiita more conveniently
- You get articles that match your needs
- You can efficiently read back useful information
- You can use dark theme