Location:
Search - SQList
Search list
Description: 顺序表的实现,非常准确好用,没有解压密码,希望喜欢-order to achieve very accurate convenient, not extracting passwords, like
Platform: |
Size: 6118 |
Author: 吴弥 |
Hits:
Description:
冒泡排序
直接选择排序
Shell排序
快速排序
归并排序
堆排序
直接插入排序基本算法
#include<iostream.h>
#include<stdlib.h>
#include<time.h>
const int n=100000
typedef struct{
int key
}RedType
typedef struct{
RedType *r //r[n+1]
int length
}SqList
int random()
void InsertSort(SqList &L)
void main(){
SqList L
L.r = new RedType[n+1]
L.length=n
for(int i=1 i<=n i++) L.r[i].key=random()
long t1,t2
t1=clock()
InsertSort(L)
t2=clock()
cout<<\" 时间: \"<<float(t2-t1)/CLK_TCK<<endl
}
-Bubble Sort direct selection Shell Ranking Ranking Ranking Rapid Merging Sort Heap Sort basic ordering directly inserted Algorithm # include
Platform: |
Size: 720567 |
Author: zero |
Hits:
Description: 实习题
[问题描述]
1. 设顺序表中的数据元素递增有序,将插入到顺序表的适当位置上,是该表仍然有序。
[输入]
初始顺序表,插入字符。
[输出]
插入x后线性表的结果
[存储结构]
采用顺序存储结构
[算法的基本思想]
建立一个递增顺序表,插入一个数值并移动元素,使其仍然有序。
程序如下:
#include \"iostream.h\"
#include <malloc.h>
#define LIST_INTI_SIZE 100//初始空间大小
typedef struct SqList
-attachment that [problem description] 1. Established order of the table data elements incremental orderly, will be inserted into the appropriate sequence table position is that the schedule remains orderly. [Imported] initial order and inserting characters. [Output] x inserted after the results of the linear scale [storage structure] sequence storage structure [algorithm for the basic idea : the establishment of a - incremental sequence table, insert a numerical and mobile elements, it remains orderly. The procedure is as follows : # include "iostream.h" # include
Platform: |
Size: 8550 |
Author: Demonic |
Hits:
Description: 我的另外一个数据结构程序,和刚才那个不同,无论是算法还是语言实现,都有很大的不同!
Platform: |
Size: 862593 |
Author: 董礼 |
Hits:
Description: 顺序存储的线形表
实现添加,删除,查找,合并2个线形表的功能
Platform: |
Size: 9462 |
Author: 逍 |
Hits:
Description: 顺序表的简单操作,包括建立,查找,添加,删除等线性表的基本操作
Platform: |
Size: 98065 |
Author: Feng Rui |
Hits:
Description: 包括线性表,链表,用C语言写的-including linear table, linked list, using the C language to write
Platform: |
Size: 2369 |
Author: 余标 |
Hits:
Description: 顺序表是线性表的一种最简单的存储结构。大家多多支持
Platform: |
Size: 39793 |
Author: 小雨 |
Hits:
Description: 链表的初始化 判断是否为空 计算长短 输入输出
Platform: |
Size: 1795 |
Author: 小兰 |
Hits:
Description: 顺序表的基本操作 用C语言实现 是数据结构的入门程序
Platform: |
Size: 2101 |
Author: zhanglong |
Hits:
Description: 本文件包括了各种常用排序算法
void InsertSort(SqList L) //直接插入排序
void BInsertSort(SqList L) //折半插入排序
void BubbleSort(SqList L) //冒泡排序
void QuickSort(SqList L) //快速排序
void ShellSort(SqList L) //希尔排序
Platform: |
Size: 3331 |
Author: limeng |
Hits:
Description: 包括线性表,链表,用C语言写的-including linear table, linked list, using the C language to write
Platform: |
Size: 2048 |
Author: 余标 |
Hits:
Description: 顺序表的基本操作 用C语言实现 是数据结构的入门程序-The basic operation of the order form using C language is a data structure to achieve entry-procedure
Platform: |
Size: 2048 |
Author: zhanglong |
Hits:
Description: 数据结构——运动会
为帮助同学们尽快进入编程状态特提供此例
1.将SqList.h、Mdefine.h、sport.c放在同一目录下
2.按下述方法编译运行即可,体验一下
编译包含有自定义的.h文件的.c文件
一种方法:
⑴.将.c和.h文件放在某一目录下(例如:datastruct)
⑵.改变用户工作目录(用户文件所在目录)
选择"File/Chaire Dir"打开新目录输入框,输入选择的用户工作目录datastruct,执行Change Dir 改变工作目录。否则对.c文件包含的自定义的.h文件提示No open
⑶.在编辑器中打开.c文件,进行编译,运行即可
另一种方法:
在上一种方法的基础上
⑴. 打开project菜单,选择open project ,在.c和.h文件的同一目录下创建一个工程文件
⑵. 打开project/Add Item菜单,输入项目名,然后将.c文件增加到工程文件中。不用将.h文件加入。
⑶.在工程文件中双击.c文件,打开.c文件,进行编译,运行即可
3. ReadFormFile(SqList &L) 从文件读入运动员成绩信息操作作为示例
-err
Platform: |
Size: 2048 |
Author: ban |
Hits:
Description: 在VC6.0环境下,用C实现顺序表的基本操作:建立空表、销毁表、清空表、求表长、取表中某个元素、查找某元素在表中的位置、求前驱后继、插入删除元素等。
文件中不仅包含源码 ,还包含一组测试结果。对于刚刚学习数据结构的人是-At VC6.0 environment, using C implementation of the basic operation sequence tables: Create an empty table, the destruction of form, empty table, and a long table, check table, an element, a search element in the table position, and pre-follow-up , insert elements, such as delete. Document not only contains the source code, but also contains a set of test results. Just study the data structure for the people are
Platform: |
Size: 8192 |
Author: shuiyeshan |
Hits:
Description: 关于线性表的顺序存储结构的基本编程操作代码,利用它可以完成一些简单的程序编写-SqList
Platform: |
Size: 1024 |
Author: operal |
Hits:
Description: C++语言程序实现单链表的就地逆置功能。-The reverse of sqlist.
Platform: |
Size: 6144 |
Author: lily |
Hits:
Description: C++语言程序实现单链表的就地逆置功能。-The reverse of sqlist.
Platform: |
Size: 6144 |
Author: hecoun |
Hits:
Description: C++语言程序实现单链表的就地逆置功能。-The reverse of sqlist.
Platform: |
Size: 6144 |
Author: ndinga |
Hits:
Description: 北京工业大学电控学院大一下学期必修课——数据结构与算法,作业程序示例。
北工大电控学院数据结构与算法第二章(线性表)作业程序中的顺序表程序,可实现顺序表的插入、删除、定位、检索等功能。-Sqlist. Beijing University of Technology.
Platform: |
Size: 3072 |
Author: 永乐孤雁 |
Hits: