C#如何自定义线性节点链表集合
本例子实现了如何自定义线性节点集合,具体代码如下:
using System; using System.Collections; using System.Collections.Generic; namespace LineNodeDemo { class Program { static void Main(string[] args) { LineNodeCollection lineNodes = new LineNodeCollection(); lineNodes.Add(new LineNode("N1") { Name = "Microsoft" }); lineNodes.Add(new LineNode("N2") { Name = "Lenovo" }); lineNodes.Add(new LineNode("N3") { Name = "Apple" }); lineNodes.Add(new LineNode("N4") { Name = "China Mobile" }); Console.WriteLine("1、显示全部:"); lineNodes.ForEach(x => { Console.WriteLine(x.Name); }); Console.WriteLine("2、删除编号为N2的元素:"); lineNodes.Remove("N2"); lineNodes.ForEach(x => { Console.WriteLine(x.Name); }); Console.WriteLine("3、删除索引为1的元素:"); lineNodes.RemoveAt(1); lineNodes.ForEach(x => { Console.WriteLine(x.Name); }); Console.WriteLine("4、显示索引为0元素的名称:"); Console.WriteLine(lineNodes[0].Name); Console.WriteLine("5、显示编号为N4元素的名称:"); Console.WriteLine(lineNodes["N4"].Name); Console.WriteLine("6、清空"); lineNodes.Clear(); lineNodes.ForEach(x => { Console.WriteLine(x.Name); }); Console.ReadKey(); } } static class Utility { public static void ForEach<T>(this IEnumerable<T> source, Action<T> action) { foreach(var r in source) { action(r); } } } class LineNodeCollection : IEnumerable<LineNode> { public IEnumerator<LineNode> GetEnumerator() { return new LineNodeEnumerator(this.firstLineNode); } IEnumerator IEnumerable.GetEnumerator() { return this.GetEnumerator(); } public LineNode this[int index] { get { LineNode _lineNode= this.firstLineNode; for (int i=0;i<=index;i++) { if (_lineNode != null) { if(i<index) { _lineNode = _lineNode.Next; continue; } else { return _lineNode; } } else break; } throw new IndexOutOfRangeException("超出集合索引范围"); } } public LineNode this[string id] { get { LineNode _lineNode = this.firstLineNode; for (int i = 0; i < this.Count; i++) { if(_lineNode.ID == id) { return _lineNode; } else { _lineNode = _lineNode.Next; } } throw new IndexOutOfRangeException("未能在集合中找到该元素"); } } LineNode firstLineNode; LineNode lastLineNode; public void Add(LineNode lineNode) { this.Count++; if(this.firstLineNode == null) { this.firstLineNode = lineNode; } else { if (this.firstLineNode.Next == null) { lineNode.Previous = this.firstLineNode; this.firstLineNode.Next = lineNode; this.lastLineNode = this.firstLineNode.Next; } else { lineNode.Previous = this.lastLineNode; this.lastLineNode.Next = lineNode; this.lastLineNode = this.lastLineNode.Next; } } } public int Count { private set;get; } public int IndexOf(string id) { LineNode _lineNode = this.firstLineNode; for (int i = 0; i < this.Count; i++) { if (_lineNode.ID == id) { return i; } else { _lineNode = _lineNode.Next; } } throw new IndexOutOfRangeException("未能在集合中找到该元素"); } public void Clear() { this.firstLineNode = null; this.lastLineNode = null; this.Count = 0; this.GetEnumerator().Reset(); } public void RemoveAt(int index) { if (this.Count < index) throw new InvalidOperationException("超出集合索引范围"); LineNode _currentLineNode = this[index]; if (_currentLineNode.Previous == null) { _currentLineNode = _currentLineNode.Next; this.firstLineNode = _currentLineNode; } else { LineNode _lineNode = this.firstLineNode; for (int i = 0; i <= index - 1; i++) { if (i < index - 1) { _lineNode = _lineNode.Next; continue; } if (i == index - 1) { if (_currentLineNode.Next != null) { _lineNode.Next = _lineNode.Next.Next; } else { this.lastLineNode = _lineNode; _lineNode.Next = null; } break; } } } this.Count--; } public void Remove(string id) { int _index = this.IndexOf(id); this.RemoveAt(_index); } public LineNode TopLineNode { get { return this.firstLineNode; } } public LineNode LastLineNode { get { return this.lastLineNode; } } } class LineNodeEnumerator : IEnumerator<LineNode> { LineNode topLineNode; public LineNodeEnumerator(LineNode topLineNode) { this.topLineNode = topLineNode; } public LineNode Current { get { return this.lineNode; } } object IEnumerator.Current { get { return this.Current; } } public void Dispose() { this.lineNode = null; } LineNode lineNode; public bool MoveNext() { if(this.lineNode == null) { this.lineNode = this.topLineNode; if (this.lineNode == null) return false; if (this.lineNode.Next == null) return false; else return true; } else { if(this.lineNode.Next !=null) { this.lineNode = this.lineNode.Next; return true; } return false; } } public void Reset() { this.lineNode = null; } } class LineNode { public LineNode(string id) { this.ID = id; } public string ID { private set; get; } public string Name {set; get; } public LineNode Next { set; get; } public LineNode Previous { set; get; } } }
注意:
①这里所谓的线性节点指定是每个节点之间通过关联前后节点,从而形成链接的节点;
②本示例完全由博主原创,转载请注明来处。
运行结果如下:
示例下载地址:C#自定义线性节点链表集合
(请使用VS2015打开,如果为其他版本,请将Program.cs中的内容复制到自己创建的控制台程序中)
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。
上一篇:C#自定义音乐播放器进度条
栏 目:C#教程
本文标题:C#如何自定义线性节点链表集合
本文地址:https://www.xiuzhanwang.com/a1/C_jiaocheng/5571.html
您可能感兴趣的文章
- 01-10C#自定义签名章实现方法
- 01-10WinForm实现自定义右下角提示效果的方法
- 01-10C#实现自定义windows系统日志的方法
- 01-10C#自定义事件监听实现方法
- 01-10Extjs4如何处理后台json数据中日期和时间
- 01-10C#编程实现自定义热键的方法
- 01-10asp.net中XML如何做增删改查操作
- 01-10C#.NET中如何批量插入大量数据到数据库中
- 01-10轻松学习C#的方法
- 01-10C#自定义DataGridViewColumn显示TreeView
阅读排行
本栏相关
- 01-10C#通过反射获取当前工程中所有窗体并
- 01-10关于ASP网页无法打开的解决方案
- 01-10WinForm限制窗体不能移到屏幕外的方法
- 01-10WinForm绘制圆角的方法
- 01-10C#实现txt定位指定行完整实例
- 01-10WinForm实现仿视频播放器左下角滚动新
- 01-10C#停止线程的方法
- 01-10C#实现清空回收站的方法
- 01-10C#通过重写Panel改变边框颜色与宽度的
- 01-10C#实现读取注册表监控当前操作系统已
随机阅读
- 04-02jquery与jsp,用jquery
- 01-11ajax实现页面的局部加载
- 01-11Mac OSX 打开原生自带读写NTFS功能(图文
- 01-10使用C语言求解扑克牌的顺子及n个骰子
- 08-05织梦dedecms什么时候用栏目交叉功能?
- 08-05DEDE织梦data目录下的sessions文件夹有什
- 08-05dedecms(织梦)副栏目数量限制代码修改
- 01-10delphi制作wav文件的方法
- 01-10C#中split用法实例总结
- 01-10SublimeText编译C开发环境设置