搜索资源列表

  1. b

    0下载:
  2. 已知一个双向链表,从第二个元素开始已经呈递增有序,请编写一个算法把第一个元素删除且插入到适当位置,结果链表仍然有序(设表无头结点) 主要是定义一个双向链表,随意输入几个数字,把第一个数字插进去,条件的是呈递增有序,把第一个元素删除! -Known to a two-way list, from the beginning of the second element has been increasing in an orde
  3. 所属分类:文档资料

    • 发布日期:2024-05-19
    • 文件大小:1024
    • 提供者:周清林
  1. nachos01

    0下载:
  2. nachos下并发程序设计。编写双向链表并演示并发错误。包含文件Makefile.common、main.cc、threadtest.cc、dllist-driver.cc、dllist.cc、dllist.h、nachos01.doc-concurrent programming under the nachos. List and demonstrate the preparation of two-way concurrent e
  3. 所属分类:操作系统开发

    • 发布日期:2024-05-19
    • 文件大小:81920
    • 提供者:yy
  1. chain

    0下载:
  2. 已知一个双向链表,从第二个元素开始已经呈递增有序,随意 输入几个数字,把第一个数字插进去,条件的是呈递增有序-Known to a two-way list, from the beginning of the second element has been increasing in an orderly manner, free importation of a few figures into the first numbe
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-19
    • 文件大小:1024
    • 提供者:Leohunters
  1. linkedlist

    0下载:
  2. 实现双向链表的建立、打印、删除、插入等操作,是双向链表的初级应用。-The establishment of two-way linked list, print, delete, insert, such as operation, is the primary application of a two-way linked list.
  3. 所属分类:其他小程序

    • 发布日期:2024-05-19
    • 文件大小:1024
    • 提供者:angle
  1. Large_integer_adder

    0下载:
  2. 大整数加法 我们将一个大整数从右到左分组,每三位为一个节点,若剩余一个组不满三位也将其作为一个节点处理。大整数本身的符号用头节点来表示。1表示正数,-1表示负数。通过这样的方式我们就构造了一个存储大整数的双向链表,然后就可以进行大整数的基本运算了。-Large integer addition we will be a large integer division from right to left, each for a three
  3. 所属分类:C#编程

    • 发布日期:2024-05-19
    • 文件大小:1024
    • 提供者:夏洁
  1. data_structure1

    0下载:
  2. 1、顺序表 Seqlist.h Test.cpp 2、单链表 ListNode.h SingleList.h test.cpp 3、双向链表 NodeList.h DoubleList.h Test.cpp 4、循环链表 ListNode.h CircularList.h Test.cpp -1, the order form Seqlist.h Tes
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-19
    • 文件大小:3072
    • 提供者:XS
  1. linklist

    0下载:
  2. 数据机构中的双向链表,可用来实现并集,并且是用c++编制-for(i=1 i<=link1.GetLengthofLink() i++) { int e=link1.GetElement(i) if(link2.LinkLocate(e)==0) { newnode=(struct node*)malloc(sizeof(struct node)) n
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-19
    • 文件大小:1024
    • 提供者:姚依梦
  1. min_malloc5

    0下载:
  2. 小型内存分配模块,用通用循环双向链表实现,改程序模拟系统malloc-Small memory allocation module, two-way linked list with the realization of general circulation, to process simulation system malloc
  3. 所属分类:嵌入式Linux

    • 发布日期:2024-05-19
    • 文件大小:3072
    • 提供者:毛泽东
  1. shuangxianglianbiao

    0下载:
  2. 该程序为双向链表,主要实现电话簿的功能,可以添加,插入,删除节点等。-This is doubly linked lists,which has the function of telephone.
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-19
    • 文件大小:8192
    • 提供者:王跃
  1. jose

    0下载:
  2. jose问题用双向链表实现,可以正向逆向数数,可以控制最后的获胜人数,可以自己定义起始位置,从哪里开始-jose problem with the realization of two-way linked list, you can forward reverse count, you can control the number of final victory, you can define their own starting
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-19
    • 文件大小:988160
    • 提供者:zijinghw
  1. double_list

    0下载:
  2. 构建两个双向链表,能够根据第一个链表中的值查询在第二个链表中的相同值的位置-Construction of two two-way linked list, a list based on the value of inquiry in the second list value in the same position
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-19
    • 文件大小:15360
    • 提供者:hungxn
  1. 123

    0下载:
  2. 构建两个双向链表,能够根据第一个链表中的值查询在第二个链表中的相同值的位置-Construction of two two-way linked list, a list based on the value of inquiry in the second list value in the same position
  3. 所属分类:其他小程序

    • 发布日期:2024-05-19
    • 文件大小:1024
    • 提供者:王刚
  1. listconv

    0下载:
  2. 把原链表倒向 先用指针循环至NULL(结尾),再--; 先从头一个一个遍历,再把读过的建成一个链表(关键是这次要建前插链表),遍历完了,倒链表也建成了,思路就是这样了,程序应该不是太难吧,你自己试试就行了. 在开始完成你的从单链表派生出来的双向链表之前,要在单链表这个基类中添加修改当前 -The side of the original list Pointer to the first cycle of N
  3. 所属分类:其他小程序

    • 发布日期:2024-05-19
    • 文件大小:933888
    • 提供者:楼昊
  1. feng10

    0下载:
  2. 双向链表插入与删除.该程序实现的功能是创建一个双向链表,并且实现链表的插入和删除-Insertion and deletion of two-way linked list. The function of the realization of the program is to create a two-way linked list, and the realization of the insert and delete list
  3. 所属分类:其他小程序

    • 发布日期:2024-05-19
    • 文件大小:1024
    • 提供者:fengzhengnian/
  1. DoubleList

    0下载:
  2. 用类定义一个双向链表,并定义双向链表的排序插入,删除和输出操作的成员函数,可以实现依据姓名查找结点及修改结点数据的功能,把记录以通讯录形式保存在磁盘上。-Class definition with a two-way linked list, and define the order of two-way linked list insert, delete, and member functions of the output ope
  3. 所属分类:控制台(字符窗口)编程

    • 发布日期:2024-05-19
    • 文件大小:5120
    • 提供者:陈灿
  1. a

    0下载:
  2. 双向链表的各种操作(包括建立,插入,删除,查找等)-Two-way linked list of a variety of operations (including create, insert, delete, search, etc.)
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-19
    • 文件大小:1024
    • 提供者:徐彦
  1. 8_2

    0下载:
  2. 双向链表\8_2.rar 大学生c加加课程设计-Two-way linked list \ 8_2.rar Students c Gaga Course Design
  3. 所属分类:其他小程序

    • 发布日期:2024-05-19
    • 文件大小:2048
    • 提供者:cai
  1. 11

    0下载:
  2. 1. 利用尾插法建立一个双向链表,并遍历双向链表。 2. 实现双向链表中删除一个指定元素。 3. 在非递减有序双向链表中实现插入元素e仍有序算法。 4. 判断双向链表中元素是否对称,若对称返回1,否则返回0。 5. 设元素为正整型,实现算法所有奇数排列在偶数之前。 6. 在主函数中设计一个简单的菜单调试上述算法。 -table
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-19
    • 文件大小:63488
    • 提供者:李惠
  1. IOCPServer

    0下载:
  2. SrvEngine的修改类,删掉了无用代码,使用双向链表保存SOCKET,线程池增加对粘包判断,完整接收判断等-SrvEngine modification classes, deleted unused code, and the use of doubly linked lists to save SOCKET, to increase the thread pool stick package to determine a com
  3. 所属分类:Internet/网络编程

    • 发布日期:2024-05-19
    • 文件大小:37888
    • 提供者:gt2333588
  1. LinuxPos

    1下载:
  2. POS收银系统 开发平台:Redhat9 开发语言:标准C 数据库:Oracle 8i 开发周期:2009年6月-2009年7月 关键技术:ncurses库,Pro*C ,通用双向链表 项目简介:使用ncurses绘制界面,通过Pro*C访问 Oracle数据库,数据保存在通用双链表中,实现超市日常经营情况管理,报表生成,以及后台管理功能。 功能模块:用户登录模块,前台收银模块(收银、挂单、取单、退货),后台
  3. 所属分类:Oracle数据库

    • 发布日期:2024-05-19
    • 文件大小:89088
    • 提供者:杜峰
« 1 2 ... 5 6 7 8 9 1011 12 13 14 15 ... 30 »

源码中国 www.ymcn.org