搜索资源列表
数据结构讲义
- 1.算法 2.线性表 3.栈和队列 4.数组 5.树 6.图 7.查找 8.排序
5
- 编写一个程序求一组整数的中值.如果这组数的个数为奇数,那么 //* 中值就是排序后的中间那个数 如果这组数的个数为偶数,那么中 //* 值就是平排序后的中间两个数的平均值(也是这组数的平均值). //* 编写一个函数接受如下两个参数: //* (1)整形数组 //* (2)代表该数组元素个数的一个整数 //* 该函数应当返回数组的中值.-To prepare a program for a group of integer valu
b
- 在程序中输入数组大小n,通过动态分配内存函数malloc产生一个整型数组,接着输入该数组的n个元数,并使用一个函数对组数进行排序(从小到大,要求用选择法实现)-In the procedure input array size n, through dynamic allocation of memory function malloc generate an integer array, and then enter the array of n-ary number, and use a f
Application
- 编写Application和Applet程序,实现:将上学期所学的各门课程的名称及考试成绩的信息用数组存放,并在for(或while)循环中利用排序算法,将成绩进行升(或降)序排列,最后输出排序后的课程成绩。-Application and Applet preparation procedures, achieve: The last semester of study by the name of the course and examination results with an arr
SPIHT
- 通过调整小波系数的排序过程,用一维数组代替原有的链表结构,改变小波系数的重要性判断依据等措施对原有的SPIHT算法进行改进。-By adjusting the wavelet coefficients of the sorting process, using one-dimensional array instead of the original list structure, the importance of changing the wavelet coefficients and o
delphi
- 本例以由拓扑关系的arc/info 文件为数据源。其中a1,b1,c1是以fnode排序生成的数组,a1对应fnode,b1对应tnode,c1对应length,同样a2,b2,c2,是以tnode 生成的数组。Indexa1是对应某一起点与其相连的终点的个数,indexb1时对应某一终点与其相连的起点的个数,即其拓扑关系-length, the same a2, b2, c2, is based on an array of tnode generated. Indexa1 is a star
shujujiegou
- 主要介绍数据结构,是对c语言学习的加强,主要介绍了排序,线性表,队列,数组,广义表,书和二叉树,查找,图等类容。-Introduces the data structure is the c language to enhance learning, introduces the sort, linear tables, queues, arrays, generalized table, books and binary tree, locate, map, and the like capa
shuzu
- 数组编程,非常好用,你可以检索任何的数组,包括排序-it may be the best one
shujujiegou_C
- 介绍了数据结构的基本概念、线性表、链接表、数组和广义表、树、图、查找和排序等,每章用大量的实例和图表来说明基本概念和方法.同时采用c语言作为算法的描述语言,算法也尽可能地少用抽象定义,而更多的是给出具体算法,并力求算法更接近于实际应用,使读者能更快地提高编程能力。-The book gives the basic concepts of data structures, linear tables, linked tables, arrays, and generalized table, tr
2
- 1) 实现对两个文件数据进行合并,生成新文件3.txt 2) 抽取出三科成绩中有补考的学生并保存在一个新文件4.txt 3) 对合并后的文件3.txt中的数据按总分降序排序(至少采用两种排序方法实现) 4) 输入一个学生姓名后,能查找到此学生的信息并输出结果(至少采用两种查找方法实现) 5) 要求使用结构体,链或数组等实现上述要求. 6) 采用多种方法且算法正确者,可适当加分. -1) The realization of the merger of the two
bianchengmaopao
- 冒泡排序编程实现如下: #include <stdio.h> #define LEN 10 //数组长度 -Bubble Sort programming as follows:# include <stdio.h># Define LEN 10// array length
sort
- 0个不等长的字符串放入二维字符数组中,2. 字符串排序-sort the string table
cPP
- a) 使用指针数组对输入三个整数数列(每个序列5个整数),利用指针对三个数进行排序-a) the use of an array of pointers to input three integer columns (each sequence of five integers) using means for three sort
work1
- 函数数组冒泡交换输入输出,实现由大到小进行冒泡排序。-The function array Bubbling exchange input and output
guanjianlujingwenti-
- 用拓扑排序、邻接矩阵存储 结构建图、for语句的灵活运用,栈及数组来实现最短路径问题-Topological sorting adjacency matrix storage structure building plans, the flexible use of the for statement, stacks and arrays to achieve the shortest path problem
VC
- 求整数n的各位数字之和,并判断n是几位数,以及判断是否为素数,求最大公约数,求阶乘,多种排序方法,以及数组转置的方法-Digits and integer n and n and determine the numbers that judgment is a prime number, and the greatest common divisor, factorial, and a variety of sorting methods, as well as the array transp
Sequence
- 数组的排序各种排序方法 以及排序的时间计算-Array sorting various sorting methods, and the calculation of time sorting
house-rent
- 房屋租售管理系统 课题内容和要求 该系统要求建立某房屋租售中介管理系统,并实现输入口令进入系统、基础信息建立、客户统计、房源排序、销售业绩及佣金收入统计、相关文件存盘功能。 通过此课题,熟练掌握文件、数组、指针的各种操作,以及一些算法思想的应用。 -house rent manage system
person-gupiao-manage
- 该系统要求建立一个时间段内某股民的投资情况管理系统,并具有排序、查找、计算、显示等功能。通过此课题,熟练掌握文件、数组、指针的各种操作,以及一些算法思想的应用。-person gupiao manage system
实验报告4-数组构建
- 编写一个Java程序,要求将一个数组复制到另外一个数组。 Java中数组的应用之一,是对数组中的数据进行排序,试编写一个Java程序,对一个整数数组进行排序。