中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

利用C#實現雙向鏈表的高級功能

c#
小樊
82
2024-08-29 04:55:10
欄目: 編程語言

在C#中,可以使用類來實現雙向鏈表的高級功能

using System;

public class Node
{
    public int Value;
    public Node Previous;
    public Node Next;

    public Node(int value)
    {
        Value = value;
        Previous = null;
        Next = null;
    }
}

public class DoublyLinkedList
{
    private Node _head;
    private Node _tail;

    public DoublyLinkedList()
    {
        _head = null;
        _tail = null;
    }

    // 在鏈表末尾添加節點
    public void Add(int value)
    {
        Node newNode = new Node(value);

        if (_head == null)
        {
            _head = newNode;
            _tail = newNode;
        }
        else
        {
            newNode.Previous = _tail;
            _tail.Next = newNode;
            _tail = newNode;
        }
    }

    // 刪除指定值的節點
    public void Remove(int value)
    {
        Node current = _head;

        while (current != null)
        {
            if (current.Value == value)
            {
                if (current.Previous != null)
                {
                    current.Previous.Next = current.Next;
                }
                else
                {
                    _head = current.Next;
                }

                if (current.Next != null)
                {
                    current.Next.Previous = current.Previous;
                }
                else
                {
                    _tail = current.Previous;
                }
            }

            current = current.Next;
        }
    }

    // 反轉鏈表
    public void Reverse()
    {
        Node current = _head;
        Node temp = null;

        while (current != null)
        {
            temp = current.Previous;
            current.Previous = current.Next;
            current.Next = temp;
            current = current.Previous;
        }

        if (temp != null)
        {
            _head = temp.Previous;
        }
    }

    // 打印鏈表
    public void Print()
    {
        Node current = _head;

        while (current != null)
        {
            Console.Write(current.Value + " ");
            current = current.Next;
        }

        Console.WriteLine();
    }
}

class Program
{
    static void Main(string[] args)
    {
        DoublyLinkedList list = new DoublyLinkedList();

        list.Add(1);
        list.Add(2);
        list.Add(3);
        list.Add(4);
        list.Add(5);

        Console.WriteLine("Original list:");
        list.Print();

        list.Remove(3);
        Console.WriteLine("List after removing 3:");
        list.Print();

        list.Reverse();
        Console.WriteLine("Reversed list:");
        list.Print();
    }
}

這個示例中,我們創建了一個DoublyLinkedList類,用于實現雙向鏈表。這個類包含了AddRemoveReversePrint方法,分別用于在鏈表末尾添加節點、刪除指定值的節點、反轉鏈表和打印鏈表。在Main方法中,我們創建了一個DoublyLinkedList對象,并對其進行了一系列操作,以展示這些高級功能。

0
灵台县| 公主岭市| 卢氏县| 嫩江县| 肥城市| 蒙阴县| 开封市| 南溪县| 郑州市| 南和县| 靖远县| 资阳市| 云南省| 龙游县| 格尔木市| 洛隆县| 武邑县| 谷城县| 定边县| 大城县| 利津县| 定安县| 石嘴山市| 宣化县| 博湖县| 准格尔旗| 太湖县| 濮阳市| 监利县| 哈尔滨市| 常熟市| 临海市| 大同市| 修文县| 台山市| 长海县| 佛坪县| 青浦区| 松桃| 华安县| 甘肃省|