搜索资源列表

  1. 单链表基于线性表的实现

    0下载:
  2. 1. 基于链表实现线性表的以下基本操作: interface ILinarList<T> { void InsertNode(T a); //在表末尾插入元素 void InsertNode(T a, int i); //在指定的位置i插入元素 void DeleteNode(int i); //删除操作 T SearchNode(int i); //查找表元素
  3. 所属分类:Windows编程

  1. 25462

    0下载:
  2. 编写算法依次访问无头结点的单循环链表 求两个递增有序链表的交集和并集。-Algorithm followed by the preparation of the visit without a head node for the single round-robin list two incremental and orderly list and set the ground.
  3. 所属分类:其他小程序

    • 发布日期:2024-06-17
    • 文件大小:54272
    • 提供者:qinlin
  1. 1

    0下载:
  2. 已知按值递增有序排练的两个线性表A和B,且每个线性表内部各元素互不相同。试构造线性表C,使其是A和B的交集,且其中的数字同样按值递增排列。 要求: 1)分别采用顺序表、单链表、双链表三种数据结构存储上述线性表A、B、C 2)编写一个通用的程序(无论线性表A、B和C采用顺序表、单链表还是双链表存储,该程序完全通用),实现对线性表C的构造-Known to increase the value ordered by the tw
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-06-17
    • 文件大小:1024
    • 提供者:
  1. 两个有序链表的交集

    0下载:
  2. 求两个有序链表的交集,并在另一行显示出来。(Find the intersection of two ordered lists, and show them on another line.)
  3. 所属分类:书籍源码

源码中国 www.ymcn.org