搜索资源列表
shunxuList
- 包括顺序链表的查找,删除,插入,计数,和删除重复元素等操作,是我的数据结构家庭作业,大家可以参考一下,欢迎多提意见!-including sequence Chain search, delete, insert, calculators, and the deletion of repeat elements and other operations, I is the data structure of a family operation, we can take a look, plea
xxbgb
- 首先,用前插法建立链表,在算法中以create函数表示;其次,定义mergeab函数,表示算法的归并: 本算法的思路为:顺次逐个将单链表的ha中的节点(P节点)在链表 hb中查找是否有重复的结点,若有,则不插入到链表hb中,将其从链表ha中删除。若在链表hb中找到第一个大于P的节点的数据域值的节点(Q节点),则在Q节点之前插入P节点,否则将链表ha联接到链表hb的表尾。为了实现方便在单连表hb之前附加一个表头节点,带归并完成后,再归还该表头节点,返回归并后连表的头指针。 最后,
DeleteTheSameDataOfTheList
- 数据结构课程实验:删除线性表中的重复元素,附有源代码和实验结果分析.
personal
- 系统功能要求: 1)人事信息的录入 2)人事信息更新(ID不可更新) 3)人事信息删除(工资信息同时删除) 4)工资信息录入(只能录入ID存在的相关人员工资,并且该月工资不重复) 5)工资信息更新(只能更新应发工资总额和扣税) 6)工资信息删除 7)按部门统计给定时间段的工资总额 8)查询给定ID某时间段工资总额和扣税 9)系统数据的永久存取功能(文件管理) 10)其他功能
BatchUpdateInsert
- 对数据进行批量的更新,删除,插入操作,快捷,而不会出现因数据的重复造成数据更新失败-Volume of data, update, delete, insert operations, fast, and will not appear due to the duplication of data caused by data update failed
delete
- 设一线性表的数据按递增顺序排列且含有重复值,编写算法删除线性表中的重复值,链表实线-Line of table data set in increasing order and contain duplicate values, the preparation of the linear algorithm to delete duplicate values in the table, solid line list
MDment
- 基于MD5算法的重复数据删除技术的研究与改进MD5 algorithm is based on data deduplication technology Research and Improvement-MD5 algorithm is based on data deduplication technology Research and Improvement
shunxubiao
- 1. 已知顺序表L为按值递增有序的,编写算法将数据元素e插入到顺序表L中,使之仍有序。 2、编写算法删除顺序表L中所有值为e的数据元素。 3、编写算法清除顺序表L中所有重复的数据元素。 4、已知两个集合分别存储在顺序表La和Lb中,编写算法求出两个集合的并存储在Lc中。-1. The known sequence of Table L, increasing ordered by value, write algorithms to data elements L e
seqlist
- 删除重复数据, 在顺序表中查找和删除重复的字节 -Delete duplicate data ,in the table in order to find and remove duplicate bytes
llllsss
- 手机通信录模拟 (1)参考数据结构 typedef struct{ char name[10] //姓名 char OfficeTel[20] //办公电话 char HomeTel[20] //家庭电话 char CellPhone[20] //移动电话 char sex //性别,可用’F’表示女,’M’表示男 char group[10] //分组情况,分办公类、个人类 、商务类 char Email[30
Used-to-delete-duplicate-data
- 用于删除重复的数据,是一个Fortran写的数据筛选-Used to delete duplicate data, is a Fortran write data screening
SurfaceFLA
- stl文件的读取,删除重复的点和边,进行拓扑重构,得到新的数据结构-stl file to read, delete duplicate vertices and edges, the topology reconstruction, new data structures
ex206DelRepeatData
- 是一个关于删除重复数据的程序,这个程序是用c语言编的-Is a program to delete duplicate data, the program is compiled using c language
danlianbiao
- (0)单链表的创建,结点i处插入X,查找某元素、返回逻辑位置及物理指针并删除 (1)单链表的逆置.(2)清除单链表中多余的重复元素.(3)在有序的循环的带头结点单链表中插入数据X.(4)判断循环双向链表是否按值对称.(5)一元多项式的加法.-(0) The creation of a single linked list, at the junction i insert X, find an element, return to the logic of the position and
kmeans1
- K-means算法,算法步骤如下: Step1.利用式(2)计算距离矩阵D=(),其中=dist[i, j] (); Step2.扫描坐标距离矩阵D,寻找距离的最大值和最小值,用式(3)计算limit; Step3.扫描坐标距离矩阵D,寻找矩阵中距离最小的2个数据a,b,将数据a,b加入集合,={a,b},同时将数据a,b从U中删除,更新距离矩阵D; Step4.利用 (4)式在U中寻找距离集合最近的数据样本t,如果小于limit,则将t加入集合,同时将t从集合U中删除,更新
compare
- 可以在容器vector中进行数据的排序及删除重复的数据。(You can sort the data in the container vector and delete the duplicate data.)
数据结构-链表学习
- 单向链表、从尾到头打印链表、链表中倒数第K个节点、反转链表、合并两个排序的链表,两个链表的第一个公共节点,链表中环的入口节点、判断链表是否是回文结构,删除链表中重复节点,删除链表中相邻重复节点、复杂链表、复杂链表的复制
数据结构-链表学习
- 单向链表; 从尾到头打印链表; 链表中倒数第 k 个结点; 反转链表; 合并两个排序的链表; 两个链表的第一个公共结点; 链表中环的入口结点; 判断链表是否是回文结构; 删除链表中的重复结点; 复杂链表。