码迷,mamicode.com
首页 > 其他好文 > 详细

Stack

时间:2015-10-25 06:12:29      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:

Linear data structure.

First In Last Out.

push: O(1)  pop: O(1)  peek: O(1)

In Java, there is a Stack class.

A more complete and consistent set of LIFO stack operations is provided by the Deque interface and its implementations, which should be used in preference to this class. For example:
Deque<Integer> stack = new ArrayDeque<Integer>();

 

Implementation of Stack

1. Use array

2. Use linked list

 

Example:

Implement stack using queues

 

Stack

标签:

原文地址:http://www.cnblogs.com/ireneyanglan/p/4908015.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!