資料科學小嫩嫩 10/8 - Day 16 225. Implement Stack using Queues
前篇: 資料科學小嫩嫩 10/7 - Day 15 102. Binary Tree Level Order Traversal
Leetcode 225 Implement stack using queues
github : runtime 0ms , faster than 100%
用 queue 來實現 stack,
trick point: queue 是 FIFO (first in first out), 而 stack 是 LIFO (last in first out)
所以在 push 時
Leetcode 232 Implement queue using stacks
github : runtime 0ms, faster than 100%
用 stack 來實現 queue
要注意 c++ 的 stack 的 pop 沒有回傳值.
留言
張貼留言