摘要:
public class Node { public object Element; public Node Link; public Node() { Element = null; Link = null; } public Node(object theElement) { Element = theElement; Link = null; } }public class Li... 阅读全文
posted @ 2013-03-20 15:09
pzhang22
阅读(295)
评论(0)
推荐(0)
摘要:
链表定义:public class Node { public object Element; //指向下一个节点的链接 public Node FLink; //指向上一个节点的链接 public Node BLink; public Node() { Element = null; FLink = null; BLink = null; } public Node(object theEleme... 阅读全文
posted @ 2013-03-20 13:50
pzhang22
阅读(159)
评论(0)
推荐(0)
摘要:
C#,数据结构,单向链表 阅读全文
posted @ 2013-03-20 13:34
pzhang22
阅读(235)
评论(0)
推荐(0)
摘要:
C#算法小程序 阅读全文
posted @ 2013-03-20 13:26
pzhang22
阅读(184)
评论(0)
推荐(0)