目录
1.先设计一个泛型节点类Node
2.再设计一个泛型链表类LinkedList
3.创建一个LinkedList类的实例
4.完整的实例
再发一篇使用泛型的方法设计单向链表。
以下是一个使用泛型节点类和LinkedList<T>类的示例,其中包含Insert方法用于插入新节点,并在插入后更新当前节点。同时,GetCurrentValue方法用于获取当前节点的值,并将其转换为int类型。
1.先设计一个泛型节点类Node<T>
/// <summary>/// 定义泛型节点类/// </summary>public class Node<T>(T data){public T Data { get; set; } = data;public Node<T>? Next { get; set; } = null;}
2.再设计一个泛型链表类LinkedList<T>
定义一个包含Insert和GetCurrentValue方法的LinkedList<T>类:
/// <summary>/// 定义泛型链表类LinkedList<T>/// </summary>public class LinkedList<T> where T : struct{private Node<T>? head;private Node<T>? current;public void Insert(T value){var newNode = new Node<T>(value);if (head == null){head = newNode;current = newNode;}else{Node<T> temp = head;while (temp.Next != null){temp = temp.Next;}temp.Next = newNode;current = newNode;}}// 定义GetCurrentValue()方法,获取当前节点public int GetCurrentValue(){if (head == null){throw new InvalidOperationException("The linked list is empty.");}return LinkedList<T>.ConvertToInt(current.Data);}// 把<T>转换为int类型private static int ConvertToInt(T value){return checked((int)(object)value);}}
使用类似的方法在LinkedList<T>类中添加其他方法。
3.创建一个LinkedList<int>类的实例
创建一个LinkedList<int>类的实例,插入一些节点,并显示当前节点的值:
var linkedList = new LinkedList<int>();linkedList.Insert(5);
linkedList.Insert(10);
linkedList.Insert(15);Console.WriteLine(linkedList.GetCurrentValue()); // 输出:15
这个示例假设类型T可以转换为int。在实际应用中,请确保T的类型符合您的需求。
4.完整的实例
namespace _131_3
{internal class Program{private static void Main(string[] args){ArgumentNullException.ThrowIfNull(args);var linkedList = new LinkedList<int>();linkedList.Insert(5);Console.WriteLine(linkedList.GetCurrentValue()); // 输出:5linkedList.Insert(10);Console.WriteLine(linkedList.GetCurrentValue()); // 输出:10linkedList.Insert(15);Console.WriteLine(linkedList.GetCurrentValue()); // 输出:15}/// <summary>/// 定义泛型节点类/// </summary>public class Node<T>(T data){private T data = data;public T Data { get => data; set => data = value; }public Node<T>? Next { get; set; } = null;}/// <summary>/// 定义泛型链表类LinkedList<T>/// </summary>public class LinkedList<T> where T : struct{private Node<T>? head;private Node<T>? current;public void Insert(T value){var newNode = new Node<T>(value);if (head == null){head = newNode;current = newNode;}else{Node<T> temp = head;while (temp.Next != null){temp = temp.Next;}temp.Next = newNode;current = newNode;}}// 定义GetCurrentValue()方法,获取当前节点public int GetCurrentValue(){if (head == null){throw new InvalidOperationException("The linked list is empty.");}return LinkedList<T>.ConvertToInt(current!.Data);}// 把<T>转换为int类型private static int ConvertToInt(T value){return checked((int)(object)value);}}}
}
//运行结果:
/*
5
10
15*/