C#,《小白学程序》第十一课:双向链表(Linked-List)其二,链表的插入与删除的方法(函数)与代码

1 文本格式

/// <summary>

/// 改进的车站信息类 class

/// 增加了 链表 需要的两个属性 Last Next

/// </summary>

public class StationAdvanced

{

/// <summary>

/// 编号

/// </summary>

public int Id { get; set; } = 0;

/// <summary>

/// 车站名

/// </summary>

public string Name { get; set; } = string.Empty;

public StationAdvanced Last { get; set; } = null;

public StationAdvanced Next { get; set; } = null;

public StationAdvanced(int id, string name)

{

this.Id = id;

this.Name = name;

}

}

// 列表的初值

List<StationAdvanced> stations_advanced = new List<StationAdvanced>() {

new StationAdvanced(1,"北京"),

new StationAdvanced(2,"石家庄"),

new StationAdvanced(3,"香河"),

new StationAdvanced(4,"唐山"),

new StationAdvanced(5,"北戴河"),

new StationAdvanced(6,"秦皇岛"),

new StationAdvanced(7,"廊坊"),

new StationAdvanced(8,"天津"),

};

/// <summary>

/// 《小白学程序》第十三课:双向链表(Linked-List)第二,链表插入与删除的计算方法与代码

/// 本课是《小白学程序》第十课之续章。

/// 学习用 函数 来实现 链表的(节点)插入、删除,而不是手工输入。

/// </summary>

/// <param name="sender"></param>

/// <param name="e"></param>

private void button13_Click(object sender, EventArgs e)

{

StationAdvanced bj = stations_advanced[0];

StationAdvanced xh = stations_advanced[2];

StationAdvanced ts = stations_advanced[3];

StationAdvanced qhd = stations_advanced[5];

// #2 构造车次信息(直达)

// 设置 北京 下一站为 秦皇岛

// 设置 秦皇岛唐山 上一站为 北京

bj.Next = qhd;

qhd.Last = bj;

// 调用链表的 插入 删除 算法

// 插入香河

StationInsert(bj, xh);

// 插入唐山

StationInsert(xh, ts);

// #4 输出车次信息(正向)

StringBuilder sb = new StringBuilder();

sb.AppendLine("插入新车站:<br>");

// 北京 出发

StationAdvanced start = bj;

while (start != null)

{

sb.AppendLine(start.Id + " " + start.Name + "<br>");

start = start.Next;

}

sb.AppendLine("<br>");

// 删除 香河

StationRemove(xh);

// #4 输出车次信息(正向)

// 北京 出发

sb.AppendLine("删除指定车站:<br>");

start = bj;

while (start != null)

{

sb.AppendLine(start.Id + " " + start.Name + "<br>");

start = start.Next;

}

webBrowser1.DocumentText = sb.ToString();

}

/// <summary>

/// 双向链表的插入算法

/// 将 c 节点插入 a (之后) b 之间

/// </summary>

/// <param name="a"></param>

/// <param name="c"></param>

private void StationInsert(StationAdvanced a, StationAdvanced c)

{

StationAdvanced b = a.Next;

a.Next = c;

c.Last = a;

c.Next = b;

b.Last = c;

}

/// <summary>

/// 双向链表的删除算法

/// 删除 a (之后) 的 b 节点

/// </summary>

/// <param name="a"></param>

private void StationRemove(StationAdvanced b)

{

StationAdvanced a = b.Last;

StationAdvanced c = b.Next;

a.Next = c;

c.Last = a;

}

2 代码格式

cs 复制代码
/// <summary>
/// 改进的车站信息类 class
/// 增加了 链表 需要的两个属性 Last Next
/// </summary>
public class StationAdvanced
{
    /// <summary>
    /// 编号
    /// </summary>
    public int Id { get; set; } = 0;
    /// <summary>
    /// 车站名
    /// </summary>
    public string Name { get; set; } = string.Empty;
    public StationAdvanced Last { get; set; } = null;
    public StationAdvanced Next { get; set; } = null;

    public StationAdvanced(int id, string name)
    {
        this.Id = id;
        this.Name = name;
    }
}

// 列表的初值
List<StationAdvanced> stations_advanced = new List<StationAdvanced>() {
        new StationAdvanced(1,"北京"),
        new StationAdvanced(2,"石家庄"),
        new StationAdvanced(3,"香河"),
        new StationAdvanced(4,"唐山"),
        new StationAdvanced(5,"北戴河"),
        new StationAdvanced(6,"秦皇岛"),
        new StationAdvanced(7,"廊坊"),
        new StationAdvanced(8,"天津"),
};

/// <summary>
/// 《小白学程序》第十三课:双向链表(Linked-List)第二,链表插入与删除的计算方法与代码
/// 本课是《小白学程序》第十课之续章。
/// 学习用 函数 来实现 链表的(节点)插入、删除,而不是手工输入。
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void button13_Click(object sender, EventArgs e)
{
    StationAdvanced bj = stations_advanced[0];
    StationAdvanced xh = stations_advanced[2];
    StationAdvanced ts = stations_advanced[3];
    StationAdvanced qhd = stations_advanced[5];

    // #2 构造车次信息(直达)
    // 设置 北京 下一站为 秦皇岛
    // 设置 秦皇岛唐山 上一站为 北京 
    bj.Next = qhd;
    qhd.Last = bj;

    // 调用链表的 插入 删除 算法
    // 插入香河
    StationInsert(bj, xh);
    // 插入唐山
    StationInsert(xh, ts);

    // #4 输出车次信息(正向)
    StringBuilder sb = new StringBuilder();
    sb.AppendLine("插入新车站:<br>");
    // 北京 出发
    StationAdvanced start = bj;
    while (start != null)
    {
        sb.AppendLine(start.Id + " " + start.Name + "<br>");
        start = start.Next;
    }
    sb.AppendLine("<br>");

    // 删除 香河
    StationRemove(xh);

    // #4 输出车次信息(正向)
    // 北京 出发
    sb.AppendLine("删除指定车站:<br>");
    start = bj;
    while (start != null)
    {
        sb.AppendLine(start.Id + " " + start.Name + "<br>");
        start = start.Next;
    }

    webBrowser1.DocumentText = sb.ToString();
}

/// <summary>
/// 双向链表的插入算法
/// 将 c 节点插入 a (之后) b 之间
/// </summary>
/// <param name="a"></param>
/// <param name="c"></param>
private void StationInsert(StationAdvanced a, StationAdvanced c)
{
    StationAdvanced b = a.Next;
    a.Next = c;
    c.Last = a;
    c.Next = b;
    b.Last = c;
}

/// <summary>
/// 双向链表的删除算法
/// 删除 a (之后) 的 b 节点
/// </summary>
/// <param name="a"></param>
private void StationRemove(StationAdvanced b)
{
    StationAdvanced a = b.Last;
    StationAdvanced c = b.Next;
    a.Next = c;
    c.Last = a;
}

3 计算结果

相关推荐
We་ct1 小时前
LeetCode 5. 最长回文子串:DP + 中心扩展
前端·javascript·算法·leetcode·typescript
JAVA面经实录9174 小时前
Java企业级工程化·终极完整版背诵手册(无遗漏、全覆盖、面试+落地通用)
java·开发语言·面试
王老师青少年编程5 小时前
csp信奥赛C++高频考点专项训练之贪心算法 --【哈夫曼贪心】:合并果子
c++·算法·贪心·csp·信奥赛·哈夫曼贪心·合并果子
周杰伦fans5 小时前
AutoCAD .NET 二次开发:深入理解 EntityJig 的工作原理与正确实现
开发语言·.net
叼烟扛炮6 小时前
C++第二讲:类和对象(上)
数据结构·c++·算法·类和对象·struct·实例化
天疆说6 小时前
【哈密顿力学】深入解读航天器交会最优控制中的Hamilton函数
人工智能·算法·机器学习
wuweijianlove7 小时前
关于算法设计中的代价函数优化与约束求解的技术7
算法
leoufung7 小时前
LeetCode 149: Max Points on a Line - 解题思路详解
算法·leetcode·职场和发展
样例过了就是过了7 小时前
LeetCode热题100 最长公共子序列
c++·算法·leetcode·动态规划
HXDGCL7 小时前
矩形环形导轨:自动化循环线的核心运动单元解析
运维·算法·自动化