
数据结构
云烟,不再年轻
积累是一个漫长的过程,它足以可以让你写出N本书的内容
展开
-
使用SingleLinkedList扩展类,允许Add,Remove,Contains
创建两个类SingleLinkedListusing System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Diagnostics;namespace DevGuideToCollections{ /// /// Represents a st原创 2011-10-28 16:40:49 · 1492 阅读 · 0 评论 -
使用DoubleLinkedList扩展类,允许Add,Remove,Contains
方法与SingleLinkedList(单向链表)类似创建两个泛型类 DoubleLinkedListusing System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Diagnostics;namespace DevGuideToCollections{原创 2011-10-28 16:50:48 · 1813 阅读 · 0 评论 -
使用Array的一个扩展类,允许Add,Remove,Contains
类代码using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Diagnostics;namespace DevGuideToCollections{ /// /// Represents a strongly typed array原创 2011-10-28 15:38:28 · 2070 阅读 · 0 评论