搜索资源列表
-
0下载:
用C语言实现的一个双向链表,具有插入删除,查找等操作-C language of a two-way linked list, with the deletion of insertion, search, etc
-
-
0下载:
各种数据结构和算法演示(顺序表,链表,二叉树,图,动态查找,广义表,串,存储管理等)-various data structures and algorithms Demo (chronology, linked list, binary tree, graphics, dynamic search, generalized table, string, Storage Management)
-
-
0下载:
使用C#图形界面编程,实现双链表的建立、插入、删除和查找等功能。双链表中的连线和节点可以实时显示。-Use C# GUI programming, to achieve the establishment of a doubly linked list, insert, delete and search functions. Doubly linked list of connections and nodes can be displayed in real time.
-
-
0下载:
使用链表构造变长记录,实现变长记录的存储、增加、删除、查找等相关操作-Linked list structure using variable-length records, the realization of variable-length record store, add, delete, search and other related operations
-
-
0下载:
单链表的算法问题,表的创建,插入删除元素,获取和查找元素-Single-linked list algorithm problem, table creation, insert delete elements, access and search elements
-
-
0下载:
VC++数据结构与算法经典的上百种源码包,绝对对C++编程有帮助,涉及数学、底层编程、校验算法、问题算法、文件算法、大小写转换、进制转换、字符转换、数组、单链表、二分查找、汉诺塔算法以及其它一些常用算法,有的含有示例,C++编程不可多得的编程资料-VC++ data structures and algorithms on hundreds of classic source package, absolutely on the C++ programming help, involving m
-
-
0下载:
FULL Linked list,circular linked list,double linked list,circular linked list,Binary Tree.
-
-
0下载:
使用双链表实现的电话本,能够进行基本的通信人信息的基本编辑,设置有查找功能方便查找-Use double-linked list implementation of the phone book, people can communicate basic information to the basic editing, setting a search feature to easily find
-
-
0下载:
动态链表的实现。可以实现元素的创建、插入、删除、查找等。-Dynamic linked list. Elements to create, insert, delete, search.
-
-
0下载:
双向链表的建立、查找、插入、删除 方面的源程序 全面详细 自己一跑过 可以-The establishment of a doubly linked list search insert delete
-
-
0下载:
1、 创建线性表类。线性表的存储结构使用链表。
2、 完成表首插入元素、删除指定元素、搜索表中是否有指定元素、输出链表。
3、 输入n个不为零的整数作为节点元素值,遇到0代表输入结束(不创建元素值为0的节点),创建链表。输出整个链表。
4、 输入一个整数,将该数作为一个元素值插入表首位置。输出整个链表。
5、 输入一个整数,在链表中进行搜索,输出其在链表中的位置。如果不存在输出0。
6、 再一次输入一个整数,在链表中进行搜索,输出其在链表中的位置。如果不存在输出0。
7、
-
-
0下载:
使用结构体打造链表中节点,使用指针将零散的节点串成链
表,进行链表的增加节点,查询某节点,删除某节点的操作
。
试着打造双向链表以及除了头指针还有尾指针的链表。
-Use the structure to create a linked list of nodes, using the pointer will be scattered nodes strung linked list, add a node to a linked list, search for a node
-
-
0下载:
给出初始数据
实现单链表的创建、插入、删除、查找
-Given initial data to achieve the creation of a single linked list, insert, delete, search
-
-
0下载:
自己编写的一个简单的链表类,对于初学者还是很有启发作用,功能包括:链表创建 清除 增加 删除 修改 查找 遍历,属于C++基础知识-I have written a simple linked list class for beginners or very stimulating, and features include: Creating Clear list add delete modify search traversal, belonging C++ Basics
-
-
0下载:
单链表,实现链表的查找、插入、删除等功能。-Single linked list, the realization of the search list, insert, delete and other functions.
-
-
0下载:
the first file (Array made of double linked lists):
you have 2 arrays one of them is called (head) the other one is (tail), and each row is a double linked list, the user is asked to define the dimension of these arrays at fist, then he can do some
-
-
0下载:
将二叉搜索树变为双向链表,可直接编译通过-The two binary search tree into two-way linked list, compiled by
-
-
0下载:
单向链表的快速搜索,注重时间效率和空间效率。尽量采取最好的收索方法-Quick search, singly linked list the reciprocal of the k value
-
-
0下载:
链表的创建以及实现查找、删除、增添节点,读取节点数据的功能-List of creating and implementing search, delete, add nodes, read the function of the node data
-
-
0下载:
基于自写双向循环链表的学生管理系统。
其中链表是模板类,有丰富的功能。
指令1: 添加若干位学生(学号 成绩),以0结束。
指令2: 删除第1位指定学号的学生。
指令3: 删除所有指定成绩的学生。
指令4: 显示第1位指定学号的学生的成绩。
指令5: 显示所有指定成绩的学生的学号。
指令6: 显示所有学生信息。
指令-1: 退出。
如果你是因为作业搜索到本代码,学长真心建议你更改一下List部分的代码。小心助教发现。(Student mana
-