-
432
数据结构的习题和解答,特别希望我能上传上去啊(data structure of the questions and answers, and I especially hope that I can upload up ah )
- 2007-06-02 00:20:48下载
- 积分:1
-
program_of_sorts
程序中含有各种排序算法,包括了数据结构的常见算法,在处理一些排序的问题时由很大帮助(the program has several sort methods which are useful in solving problems.)
- 2014-10-06 14:39:09下载
- 积分:1
-
人事管理,可用小型企业内部人员管理
采用Delphi编写,登录用户名密码为:
admin...
人事管理,可用小型企业内部人员管理
采用Delphi编写,登录用户名密码为:
admin
-Personnel management, small businesses can be used internal staff to manage the preparation of the use of Delphi, the logged-on user name password is: admin
- 2022-01-26 04:31:46下载
- 积分:1
-
JAVA密码保护页面
JAVA密码保护页面-password-protected pages JAVA
- 2022-02-05 01:48:38下载
- 积分:1
-
ds3
单向链表的创建与操作
设单向链表中节点的数据域的数据类型为整型,编写函数实现以下操作:
(1)实现单向链表的创建(包括初始化)与输出操作,节点的个数及节点的数据由用户输入。
(源代码:ds3-1.c)
(2)查找给定的单链表中的第i个节点,并将其地址返回。若不存在第i个节点,则返回空地址。
(源代码:ds3-2.c)
(3)查找给定的单链表中值为n的节点,并将其地址返回。若不存在值为n的节点,则返回空地址。同时,还应通过参数传回该节点的序号。
(源代码:ds3-3.c)
(4)删除给定的单链表中的第i个节点,成功返回1,失败返回0。
(源代码:ds3-4.c)
(5)删除给定的单链表中值为n的节点,成功返回1,失败返回0。
(源代码:ds3-5.c)
(6)在给定的单链表的第i位上插入值为n的节点。
(源代码:ds3-6.c)
(7)在给定单链表的值为m的节点的前面插入一个值为n的节点。
(源代码:ds3-7.c)
(Creation and operation of a one-way linked list
Set up a one-way linked list data type node integer data fields , write a function to achieve the following:
( 1 ) achieve the creation of a one-way linked list ( including initialization ) and output operation , the number of nodes and node data entered by the user .
( Source : ds3-1.c)
( 2 ) Find a single list given in the i-th node and returns its address . Without the presence of the i-th node , returns an empty address.
( Source : ds3-2.c)
( 3 ) Find a given node in a given value of n single list , and return address . Without the presence of the value of n nodes , returns an empty address. Meanwhile, the number should be returned by the parameters of the node .
( Source : ds3-3.c)
( 4 ) Delete the given singly linked list in the i-th node , the successful return 1, else return 0 .
( Source : ds3-4.c)
( 5 ) to delete a single node in the list is given n , the successful return 1, else return 0 .
( Source : ds3-5.c)
( 6 ) )
- 2014-05-11 19:19:41下载
- 积分:1
-
关于算法优化的例子,简单的例子:灰度变换,嵌入式处理用得到,一种优化思想,方法...
关于算法优化的例子,简单的例子:灰度变换,嵌入式处理用得到,一种优化思想,方法-Algorithm optimization on the example of a simple example: gray-scale transformation, embedded processing used to be, an optimization ideas, methods,
- 2022-01-31 00:47:55下载
- 积分:1
-
二叉树有一个优雅的递归指针结构,所以他们是一个很好的学习方法递归指针算法。...
二叉树有一个优雅的递归指针结构,所以他们是一个很好的学习方法递归指针算法。
- Binary trees have an elegant recursive pointer structure, so they are a good way to learn recursive pointer algorithms.
- 2023-08-18 16:15:03下载
- 积分:1
-
学生成绩管理系统(无文件版)
利用c语言实现学生成绩的管理,主要功能有新生的登记注册、学生信息的修改、学生成绩的登记、学生成绩的修改、学生成绩单的格式打印等功能;本程序富含有背景操作等相关内容!
- 2022-01-22 13:03:32下载
- 积分:1
-
基于C、c++排序大全
//希尔排序void ShellSort(int r[], int n){ int i; int d; int j; for (d=n/2; d>=1; d=d/2) //以增量为d进行直接插入排序 { for (i=d+1; i0 &am
- 2022-03-05 10:56:55下载
- 积分:1
-
comp
算术编码,熵编码,HUFFMAN编码的MATLAB实现。(Arithmetic coding, entropy coding, HUFFMAN encoded MATLAB to achieve.)
- 2020-12-06 16:19:24下载
- 积分:1