E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
SQList
读书笔记之顺序查找
最近阅读到线性表上查找算法的有关章节,对简单的线性表上的查找比较如下: 顺序查找:存储结构为顺序存储和链式存储;优点是算法简单,对表无任何要求;缺点是查找效率低;适用范围是适用于n较小的表查找;/*顺序表上的查找,顺序查找,
SqList
heshanxingzhe
·
2010-11-24 20:00
交换排序----冒泡排序 和 快速排序
一、冒泡排序templatevoidBubbleSort(
SqList
&L)//1)冒泡排序{#ifdefCHANGE_FLAGboolchangeFlag=false;#endifTt;for(inti
zhoujunbuaa
·
2010-11-03 17:00
css
Class
output
顺序线性表的删除算法 C语言版
顺序线性表的删除算法: 算法部分: Status ListDelete_Sq (
SqList
&L, int i, ElemType &e ) { // 在顺序线性表
hpjianhua
·
2010-09-27 12:00
C++
c
算法
C#
J#
顺序线性表的插入算法
算法部分: 顺序线性表的插入算法 Status ListInsert_sq (
SqList
&L, int i, ElemType e ) { // 在顺序线性表 L
hpjianhua
·
2010-09-25 23:00
算法
J#
第六课:线性表的顺序表示和实现(2)
defineLISTINCREMENT10typedefstruct{ElemType*elem;//存储空间基址intlength;//当前长度intlistsize;//当前分配的存储容量以一数据元素存储长度为单位}
SqList
雨雨
·
2010-09-23 17:21
顺序
职场
休闲
线性
直接插入排序(修改自严蔚敏的数据结构)
KeyTypekey; //InfoTypeotherinfo;}RedType;typedefstruct{ RedTyper[MAXSIZE+1]; intlength;}
SqList
lianghongge
·
2010-09-12 21:00
数据结构
struct
System
include
SQLite 一
1、adbshell命令,打开模拟器命令行,2、cddata/data目录下查看所有应用程序数据列表,3、找到应用程序的包名称,cd进入接下来就可以通过
sqlist
3工具创建数据库、表。
badboy_blue
·
2010-07-29 15:00
android
sqlite
线性表-
SqList
数据结构线性表-
SqList
参考书:《数据结构(C语言)》作者:严蔚敏 如果发现错误,请帮忙指正,谢谢。
vaneng
·
2010-05-13 20:00
数据结构
C++
c
C#
D语言
顺序表的简单操作
(已经99%) 以下是
sqlist
.h头文件#include"iostream.h"#include"stdio.h"#include"stdlib.h"#defineelemtypeint#definesq_listsize20
gabvkeeqxrp
·
2010-04-11 00:00
数据结构
顺序
顺序表
休闲
表
顺序表的简单操作
(已经99%) 以下是
sqlist
.h头文件#include"iostream.h"#include"stdio.h"#include"stdlib.h"#defineelemtypeint#definesq_listsize20
gabvkeeqxrp
·
2010-04-11 00:00
数据结构
顺序
顺序表
休闲
表
数据结构:插入排序/冒泡排序/快速排序/归并排序/堆排序 C#语言实现
97,76,13,27,49 1.简单插入排序2.冒泡排序3.快速排序4.归并排序5.堆排序 public class Test2 { public void InitialList(ref
SqList
wsql
·
2009-12-30 13:00
数据结构
数据结构:插入排序/冒泡排序/快速排序/归并排序/堆排序
,65,97,76,13,27,491.简单插入排序2.冒泡排序3.快速排序4.归并排序5.堆排序C语言版#include#includetypedefstruct{int*r;intlength;}
SqList
daone
·
2009-12-29 13:00
数据结构
merge
struct
算法
语言
string
{数据结构}直接插入排序
/*直接插入排序*/#include#include typedefstruct { int*elem; intlength;}
SqList
; voidInitSqlist(
SqList
*L){
kongbai308416350
·
2009-12-10 22:00
数据结构
优化
算法
生活
struct
C++实现线性表
C++实现线性表 1 -------------------------
SqList
.h------------------------------------ 2 /*构造线性表*/ 3 #include
Pencil.C++
·
2009-09-25 19:00
排序算法
A、插入排序 一、直接插入排序voidInsertSort(
SqList
&L){for(i=2;ihigh+1;j--){L.r[j]=L.r[j-1];} L.r[high+1]=L.r[0]; }}
faithmy509
·
2009-05-27 14:00
算法
struct
tree
Class
insert
merge
C语言程序----排序(直接插入排序,SHELL排序,冒泡排序,快速排序,简单选择排序,堆排序)
include"malloc.h"typedefstruct{ intkey; intotherinfo;}Redsize;typedefstruct{Redsizer[100];intlength;}
Sqlist
xocom
·
2009-03-25 20:00
c
算法
shell
struct
语言
iostream
线性表的基本(C程序)
分三个文件写 //.cpp main函数 //说明:线性表的试验#include<stdio.h> #include<malloc.h> #include "
SqList
.h
109735215
·
2009-03-22 16:00
线性表
线性表初始化插入消毁
include"malloc.h"typedefstruct{ intno; intgrade;}ElemType;typedefstruct{ ElemType*elem; intCurrentLength; intMaxSize;}
SqList
sryaiq
·
2009-03-13 11:02
职场
线性表
休闲
张宏数据结构第二课——动态线性链表类(
sqlist
测试版) 欢迎大家测试
张宏数据结构第二课——动态线性链表类(
sqlist
测试版)欢迎大家测试 #include #include #include#includeusing namespace std;struct node
The Fourth Dimension Space
·
2009-02-23 22:00
线性表类——张宏数据结构第一课
个多小时写的,感觉不是很难,下次尝试下写成链表+模板的形式O(∩_∩)O~#include#includeusing namespace std;#define LISTVOLUME 10000class
sqlist
The Fourth Dimension Space
·
2009-02-19 00:00
数据结构二、线性表
基础实例:2.1 Status DeleteK(
SqList
&a,int i,int k)//删除线性表a中第i个元素起的k个元素 { if(i<1||k<0|
Angelialily
·
2008-09-25 13:00
数据结构
C++
c
C#
J#
List-C++数组
/*最常用的顺序表算法实现,实现方法:用C++的类实现 编译测试工具VC++6.0int用数组实现顺序的线性表的共三个文件public.h,
SqList
.h,
SqList
.cpppublic.h存放一些符号约定常量
chinayaosir
·
2008-09-01 11:00
list
测试
null
System
测试工具
快速排序学习笔记
intPartition(
SqList
&L,intlow,inthigh) { L.r[0]=L.r[low];//子表中的第一个记录作为枢轴记录 intpivot=L.r[low].key;//枢轴记录的关键字值
信心比金钱更重要!
·
2008-01-26 21:00
冒泡排序学习
冒泡排序算法: voidBubleSort(
SqList
&L) { boolexchange; for(inti=2;iL.r[j+1].key) { exchange=true; L.r
信心比金钱更重要!
·
2008-01-26 21:00
顺序表的操作
/*
sqlist
,对顺序表的各种操作*/#include"stdio.h"#include"conio.h"#include"malloc.h"#definemaxsize30typedefstruct
alen1985
·
2007-10-20 23:00
struct
null
insert
内部排序
1 #define FAILUE 0 #define LEN 5000 void swap(int *p1,int *p2);int BubbleSort(int
sqlist
eaglewood2005
·
2007-09-29 13:00
null
System
快速排序和希尔排序
defineM100typedefintKeyType;typedefstruct{ KeyTypekey;}DataType;typedefstruct{ DataTyper[M+1]; intlength;}
SqList
qiance
·
2007-06-20 18:00
C++版--线性表
defineLIST_INIT_SIZE100templateclassSqList{ private: ElemType*elem; intlength; intlistsize; public:
SqList
编程小区
·
2007-06-07 19:00
线性表的顺序和链式存储表示及基本操作的实验
defineLISTINCREMENT10#defineOK1;#defineERROR-1;typedefintElemType;typedefstruct{ElemType*elem;intlength;intlistsize;}
sqlist
han_348154920
·
2007-04-20 19:00
数据结构 排序 选择排序
)...{ key = s.r[k].key; ret = k; } } return ret;}void selectSort(
SqList
nomad2
·
2007-04-12 14:00
数据结构之顺序表的基本操作
elemtype elem[maxsize];int len;}
sqlist
;void great_list(
sqlist
*l,int n);//创表函数声明int insert_sq(
sqlist
sdywcd
·
2007-03-29 11:00
数据结构
J#
线性表-顺序表
上机实现代码:先看使用: void main() ...{
SqList
L;//定义L为顺序线性表 int j; printf(" begin test
sqList
"); InitList
zhoumin007
·
2007-01-09 00:00
数据结构
PHP
J#
D语言
顺序表的操作
*******************/#include"stdio.h"#include"stdlib.h"#defineLENGsizeof(structList)/*注意这里不能为sizeof(
sqlist
sylinx_yqg
·
2006-11-05 18:00
顺序
上一页
16
17
18
19
20
21
22
23
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他