A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

/*
* 面试题:通过LinkedList模拟栈数据结构
* 要模拟的内容的特点:
*                 先进后出。
*
* 通过LinkedList模拟栈数据结构:
*                 它的意思是说,你有一个LinkedList可以用,但是,你需要自己定义一个栈集合。
*                 对外提供获取和添加功能。
*/
public class LinkedListTest {
        public static void main(String[] args) {
                // LinkedList link = new LinkedList();
                // link.addFirst("hello");
                // link.addFirst("world");
                // link.addFirst("java");
                // Iterator it = link.iterator();
                // while (it.hasNext()) {
                // String s = (String) it.next();
                // System.out.println(s);
                // }

                // 创建集合对象
                MyStack ms = new MyStack();

                // 创建并添加元素
                ms.add("hello");
                ms.add("world");
                ms.add("java");

                // 获取
                // System.out.println(ms.get(0));
                // System.out.println(ms.get(1));
                // System.out.println(ms.get(2));
                // System.out.println(ms.get(3));

                for (int x = 0; x < ms.size(); x++) {
                        String s = (String) ms.get(x);
                        System.out.println(s);
                }
        }
}
/*
* 自定义栈集合。
*/
public class MyStack {
        private LinkedList link;

        public MyStack() {
                link = new LinkedList(); //底层调用LinedList方法
        }

        public void add(Object obj) {
                link.addFirst(obj);//底层调用LinedList类First方法

        }

        public Object get(int index) {
                return link.get(index);//底层调用LinkedList类get方法
                //根据传入的索引获取该索引出的元素
        }

        public int size() {
                return link.size();
        }
}

评分

参与人数 1技术分 +1 收起 理由
lwj123 + 1

查看全部评分

8 个回复

倒序浏览
可以改一下,用for循环遍历。。试试
回复 使用道具 举报
奋斗的黑马 发表于 2015-4-25 00:24
可以改一下,用for循环遍历。。试试

谢谢指教
回复 使用道具 举报
学习了~
回复 使用道具 举报
受教了~~~
回复 使用道具 举报
还没学到那
回复 使用道具 举报
学习了。。
回复 使用道具 举报
哇,这个真的很不错,不过我们现在还没学到这儿,先看一遍当做预习,谢谢楼主啊O(∩_∩)O~
回复 使用道具 举报
哇!!赞赞赞!!!
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马