搜索资源列表
linkedlist
- 实现单链表的各个基本操作,界面友好,便于操作 -Single list of all the basic operations, user-friendly, easy to operate
communicate
- 简单链表实现 基本功能: (1)添加记录 先判断链表是否已经存在。若不存在,需首先自动新建一个链表,然后再添加一条或多条通讯记录。 (2)显示记录 显示当前所有记录。 (3)查询记录 按名字查找,并显示该记录。 (4)通信录排序 按姓名的字母顺序排序,涉及到冒泡等排序算法。 (5)删除记录 实现逐条删除和删除全部记录两种功能。 (6)更新记录 修改已存在记录的信息(提示:需首先判断该记录是否存在)。 (7)按关系
2
- 单链表的插入和删除实验目的: 1、定义单链表的结点类型 2、通过单链表的定义掌握线性表的链式存储结构的特点; 3、熟悉单链表的建立以及插入、删除等基本操作。 -# include <stdio.h> # include<malloc.h> # define ND sizeof(struct List) struct List {int data struct List*next } void main() {
danlianbiao
- 数据结构C语言和Java描述单链表的基本操作-C language and Java data structures describing the basic operation of a single linked list
SingleList
- 此代码实现数据结构中单链表的基本算法算法,包括单链表的尾插法创建、插入、删除操作。-This code implements the basic algorithm algorithm for the singly linked list data structure, including the tail of a singly linked list interpolation method to create, insert, delete operations.
link
- 链表的建立和基本操作。此处用的是单链表。在Linux环境下实现-Establishment and basic operation of the list
sigle-list
- 用C语言对单链表的一些基本操作的实现,简单易懂-C language implementation of some basic operations on singly-linked list, easy-to-understand
queue
- 用单链表形式实现队列的结构。定义基本操作:入队,出队,打印所有队列元素。-The form of a single linked list, queue structure. Define the basic operations: enqueue, dequeue Print all queue elements.
stack
- 以单链表形式实现栈的结构,实现基本的操作:入栈,出栈,打印所有栈元素。-Stack structure a single linked list, basic operations: stack, the stack, and print all stack elements.
linklist
- 这是关于单链表的基本操作,有创建、插入、删除等算法-This is about the basic operation of a single list with create, insert, delete, and other algorithms
linked-list
- 单链表的查找、插入、删除、销毁等,循环链表的建立和输出,双向链表的基本操作-basic function of single,circular,double linked list
LinkList
- 学习单链表的程序,包括创建,删除,插入等基本操作,希望有用-Learning single list of programs, including creating, deleting, inserting and other basic operations, we hope useful
linklist
- 以c++的语言,描述数据结构中的单链表,支持插入,删除,整表创建,整表删除等单链表的基本操作-C++ language to describe the data structure of a single list
linked-list
- 1、实现单链表的所有基本操作 2、编写主程序测试所有功能 3、实现循环链表的基本操作,并编写测试程序。 4、实现双向链表的基本操作,并编写测试程序。 -1, to achieve a single list of all the basic operations 2, 3 to write the main program to test all functions to achieve the basic operation of a circular linked list,
link
- 实现链表的基本功能,包括单链表、双链表的基本操作,增加、删除、排序、插入等。(Basic function realization of linked list)
TEE
- 二叉树基本操作,包括如何建树,将二叉树叶子节点串为一个单链表等等(The fuxxking net require upload things to get download priority,I am forced to it)
162209104229 张瑞 实验一
- 了解和掌握线性表的逻辑结构和顺序、链式存储结构,掌握两种存储结构的基本算法及相关的时间性能分析。 二、要求: 任务一:建立一顺序表,实现其基本操作。 任务二:建立一个数据域定义为字符串的单链表,在链表中不允许有重复的字符串;根据输入的字符串,先找到相应的结点,后删除(Understand and master the logical structure and sequence of linear tables, chain storage structure, master the ba
parse
- c 实现单链表 生成 删除,插入,翻转等基本链表操作(C realizes single chain table generation, deletion, insertion, flipping and other basic chain operations.)