## 栈 栈结构特点:后进者先出,先进者后出,只允许在一端插入和删除数据。 ### 练习 - [用数组实现栈](https://github.com/yifanzheng/leetcode-java/issues/11#issuecomment-1019713405) - [用链表实现栈](https://github.com/yifanzheng/leetcode-java/issues/11#issuecomment-1019760713) - [有效的括号](https://github.com/yifanzheng/leetcode-java/issues/11#issuecomment-1019785132) - [最小栈](https://github.com/yifanzheng/leetcode-java/issues/11#issuecomment-1019847198) - [用栈实现队列](https://github.com/yifanzheng/leetcode-java/issues/11#issuecomment-1019878994) - [比较含退格的字符串](https://github.com/yifanzheng/leetcode-java/issues/11#issuecomment-1030583343) - [棒球比赛](https://github.com/yifanzheng/leetcode-java/issues/11#issuecomment-1030598553) - [下一个更大元素 I](https://github.com/yifanzheng/leetcode-java/issues/11#issuecomment-1044548681)