搜索资源列表

  1. cpp5

    0下载:
  2. 线性表示例,将学生的成绩形成链表,完成对线性链表的各种操作.-Example of linear
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-17
    • 文件大小:1024
    • 提供者:wangmingfei
  1. hah

    0下载:
  2. 1. 栈结构通常采用的两种存储结构是(A)。 A、顺序存储结构和链表存储结构 B、散列和索引方式 C、链表存储结构和数组 D、线性链表结构和非线性存储结构 -1. Stack structure of the two commonly used storage structure is (A). A, list the order of storage structure and storage struc
  3. 所属分类:数学计算/工程计算

    • 发布日期:2024-05-17
    • 文件大小:92160
    • 提供者:linjiagui
  1. List-operations

    0下载:
  2. 主要包括两个方面,一个是要利用链表的插入运算建立线性链表,并利用链表的查找、删除、输出等基本运算反复实现这些操作,另一个方面就是要建立两个链表,把它们合并成一个线性表。-Mainly include two aspects, one is to use a linked list into a linear list operations, and use the search list, delete, export and othe
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-17
    • 文件大小:1024
    • 提供者:邱凌云
  1. linearlist

    0下载:
  2. 线性链表的定义,遍历,查找,删除,排序。-Linear list definition, traversal, search, delete, sort.
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-17
    • 文件大小:2048
    • 提供者:ren
  1. lianbiao

    0下载:
  2. 线性链表操作——插入、删除、合并、排序、查找-Linear list operation- insert, delete, merge, sort, find
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-17
    • 文件大小:1024
    • 提供者:郭涯
  1. shiyan1

    0下载:
  2. 一元稀疏多项式的表示及运算。根据多项式的结构特点,利用线性链表来实现多项式相加,结点中存放各项的系数和指数,构造相应的多项式。将链表初始化为空,将多项式中的每一项顺序插入链表中,并将链表中多项式按升幂排列。进行多项式加法是,先将其中一多项式a存入链表c中,然后将多项式b的每一项一次插入链表c中,最后得到结果多项式c。-Unary representation of sparse polynomials and operations. A
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-17
    • 文件大小:1024
    • 提供者:袁联合
  1. lianbiao

    0下载:
  2. c语言环境下的一个简单的线性链表的插入与删除的源代码-c language environment is a simple linear linked list insertion and deletion of source code
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-17
    • 文件大小:1024
    • 提供者:娄子
  1. header

    0下载:
  2. 这是一个软件技术基础中的很简单的结构,双向性线性链表-This is a software technology base in a very simple structure, bidirectional linear list
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-17
    • 文件大小:4096
    • 提供者:小羊
  1. lianbiaohebing

    0下载:
  2. 线性链表的操作,包括线性链表的创建,用指针合并线性链表-Linear list of operations, including the creation of the linear list, with pointers and linear list
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-17
    • 文件大小:50176
    • 提供者:loulouyt
  1. The-program-of-data-structure

    0下载:
  2. 数据结构的例子程序,包含循环队列、链表队列、线性链表、静态链表、堆栈等的实现。-Examples of program data structures, including circular queue, linked list queue, linked list, static list, stack, etc. to achieve.
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-17
    • 文件大小:4729856
    • 提供者:panyiteng
  1. YiYuanDuoXiangShi

    0下载:
  2. 1.一元多项式相加(10分) 题目说明: 编写一元多项式加法运算程序。要求用线性链表存储一元多项式(参照课本)。该程序有以下几个功能: 1. 多项式求和 输入:输入三个多项式,建立三个多项式链表Pa、Pb、Pc (提示:调用CreatePolyn(polynomial &P,int m)。 输出:显示三个输入多项式Pa、Pb、Pc、和多项式Pa+Pb、多项式Pa+Pb+Pc (提示:调用AddPolyn
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-17
    • 文件大小:1024
    • 提供者:王石
  1. emplye-syetem

    0下载:
  2.  优势分析 分模块,条理清晰,每个函数都有他自己的作用,从而多处代码重用; 有比较好的编程风格。代码缩进,命名比较规范; 人性化考虑。如添加记录时,用户想输入几条就几条。 劣势分析 内容比较简单,采用大家熟悉的线性链表存储结构,难度不是很大,只要注意细节即可。 -employees system
  3. 所属分类:企业管理(财务/ERP/EIP等)

    • 发布日期:2024-05-17
    • 文件大小:122880
    • 提供者:孙立东
  1. main

    0下载:
  2. 1.实现线性表的链式存储结构——线性链表。从文件输入一批整数,建立有序链表(升序),并完成: • 查找一个指定元素 • 插入一个给定元素 • 删除一个指定元素 • 统计链表的长度 • 输出线性链表 • 实现安逆序链表的重建 2.采用链式结构实现任意多项式的存储,求两个多项式的和。 -Linear linked list data s
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-17
    • 文件大小:1024
    • 提供者:nemo
  1. lianbiao

    0下载:
  2. 用c语言写的线性链表的创建、删除、插入、销毁代码-With c language to create a linear linked list, delete, insert, destroy code
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-17
    • 文件大小:1024
    • 提供者:lin
  1. Lnode

    0下载:
  2. 本程序是学习数据结构的基础程序,主要有线性链表,栈,多为数组。-This program is to learn basic programming data structures, mainly linear linked lists, stacks, and more for the array.
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-17
    • 文件大小:156672
    • 提供者:袁风帆
  1. stack_del_search

    0下载:
  2. 用栈的方式实现线性链表的删除插入查找等功能,适合初学者自学理解-Be achieved with a stack of linear linked list of deleted into the search functions, suitable for beginners learning to understand
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-17
    • 文件大小:2048
    • 提供者:liu
  1. list

    0下载:
  2. C语言实现 线性链表的创建,销毁,遍历,插入元素,删除元素,取元素等操作 经典源代码。-C language implementation linear list of creating, destroyed, traverse, insert elements, remove elements, take elements such operation classical source code.
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-17
    • 文件大小:1024
    • 提供者:liuzhixing
  1. xianxinglianbiao

    0下载:
  2. 线性链表,排序,表头,表尾,指针,有详细的介绍-Linear list, sorting, header, footer, the pointer
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-17
    • 文件大小:1024
    • 提供者:xyq
  1. duoxiangshi

    0下载:
  2. 运用线性链表实现两个多项式相加、相乘、相减- The use of linear linked list two polynomials, multiply and subtract
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-17
    • 文件大小:3072
    • 提供者:史军
  1. 1.tar

    0下载:
  2. 数据结构之线性链表操作,很好的学习数据结构中的链表资料-useful codeuseful codeuseful codeuseful codeuseful codeuseful codeuseful codeuseful codeuseful codeuseful codeuseful codeuseful codeuseful codeuseful codeuseful codeuseful codeuseful codeusefu
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-17
    • 文件大小:9216
    • 提供者:志明
« 1 2 3 4 56 7 8 9 10 ... 23 »

源码中国 www.ymcn.org