ZoeToString

导航

2012年11月19日 #

简单的单链表实现栈

摘要: 判断括号是否配对完整. class Node<T> { public T Item { get; set; } public Node<T> Next { get; set; } } class Stack3<T> { private Node<T> _first; private int _n; public int Count() { return _n; } public bool IsEmply() { ... 阅读全文

posted @ 2012-11-19 21:24 ZoeToString 阅读(206) 评论(0) 推荐(0) 编辑