文件名称:Data_struct_2
介绍说明--下载内容均来自于网络,请自行研究使用
数据结构课后设计题第二章(2009-06-17 23:19:42)转载标签:数据结构第二章杂谈 分类:编程
◆2.11② 设顺序表L中的数据元素递增有序。
试写一算法,将x插入到L的适当位置上,并保
持该表的有序性。
要求实现下列函数:
void InsertOrderList(SqList &L, ElemType x)
顺序表类型定义如下:
typedef struct {
ElemType *elem
int length
int listsize
} SqList -Data structure design question after class II (2009-06-17 23:19:42) reproduced Tags: Chapter topics for classification of data structures: programming ◆ 2.11 ② based order form elements of L in increasing order of data. Try to write a method, the L x inserted into the proper position and keep the table ordered. Required to achieve the following functions: void InsertOrderList (SqList & L, ElemType x) the order of the table type definition is as follows: typedef struct (ElemType* elem int length int listsize ) SqList
◆2.11② 设顺序表L中的数据元素递增有序。
试写一算法,将x插入到L的适当位置上,并保
持该表的有序性。
要求实现下列函数:
void InsertOrderList(SqList &L, ElemType x)
顺序表类型定义如下:
typedef struct {
ElemType *elem
int length
int listsize
} SqList -Data structure design question after class II (2009-06-17 23:19:42) reproduced Tags: Chapter topics for classification of data structures: programming ◆ 2.11 ② based order form elements of L in increasing order of data. Try to write a method, the L x inserted into the proper position and keep the table ordered. Required to achieve the following functions: void InsertOrderList (SqList & L, ElemType x) the order of the table type definition is as follows: typedef struct (ElemType* elem int length int listsize ) SqList
相关搜索: l-edit
(系统自动生成,下载前可以参看下载内容)
下载文件列表
Data_struct_2.txt