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
单链表的操作_二分查找
voidBinSearch(
SqList
*sql,EleTypex)//二分查找应用于已经排序好的数据{assert(sql);if(sql->size>0){intleft=0;intright=sql
程序狂魔
·
2015-12-14 23:12
C/C++
单链表的操作_二分查找
voidBinSearch(
SqList
*sql,EleTypex)//二分查找应用于已经排序好的数据{assert(sql);if(sql->size>0){intleft=0;intright=sql
程序狂魔
·
2015-12-14 23:12
c/c++
数据结构(二)
1.顺序表和链表综合//在递增有序的顺序表中编程实现A=A-B∩CtypedefintElemType;#include"
sqlist
.h"//即为数据结构(一)顺序表部分#includeintmain
learnSharelearn
·
2015-11-20 19:44
七大排序速查版
通用结构体: View Code typedef struct{int r[MAXSIZE+1]; //下标从1开始用,0为哨兵或其他用int length; }
SqList
; 一
·
2015-11-13 21:11
排序
数据结构之线性表的顺序存储结构的实现--C语言版
;stdlib.h> #include <time.h> #define INIT_SIZE 100 #define PER_INCREMENT 10 typedef struct
SqList
·
2015-11-13 07:15
数据结构
一、顺序表
定义顺序列表的方法:一、静态定义;二、动态定义; 静态定义 #define MaxSize 100ElemType
Sqlist
[MaxSize];int len; 动态定义 #define
·
2015-11-13 07:12
顺序
重读数据结构——线性表
Status InitList_Sq(
SqList
&L) { L.elem = (ElemType *)malloc(LIST_INIT_SIZE *
·
2015-11-13 06:43
数据结构
插入排序
折半插入排序 是在寻找 当前元素的位置时采取了折半查找的方法 #include"stdio.h" #include"stdlib.h" typedef struct
SqList
·
2015-11-12 23:19
插入排序
折半插入排序
#include"stdio.h" #include"stdlib.h" typedef struct
SqList
{ int * elem;
·
2015-11-12 21:50
插入排序
五种排序算法
quot; #include "math.h" #include "dos.h" #define Max 100 typedef int
sqlist
·
2015-11-12 21:16
排序算法
快速排序
代码如下: private static void quicksort(ref List<int>
sqList
3, int low, int high) //OK
·
2015-11-12 21:42
快速排序
线性表的顺序存储结构
线性表的顺序存储结构: 1 /* 2 ** 线性表的顺序存储结构 */ 3 #define
SQLIST
_INIT_SIZE 100 //顺序表存储空间初始分配量 4 #define
SQLIST
_INCREMENT
·
2015-11-12 10:36
线性表
线性表-顺序存储结构
1: //
sqlist
.cpp 2: #include "
sqlist
.h" 3: #include <iostream> 4: 5: void
·
2015-11-11 09:54
线性表
简单选择排序
简单选择排序算法 void selectsort (
sqlist
r, int n) { int i, j, min;
·
2015-11-11 05:56
选择排序
快速排序
快速排序算法 void quicksort (
sqlist
r, int s, int t) { int i=s, j=t;  
·
2015-11-11 05:55
快速排序
顺序表的使用
没有什么特别的,只是自己感觉这两个小算法比较特别,让自己知道问题也可以这么考虑 /******************************************** * 文件名称:proc_
sqlist
.c
·
2015-11-11 05:51
顺序
C语言顺序表的实现
栽了个大跟头,在这个错误上徘徊了4个小时才解决,现在分享出来,给大家提个醒,先贴上代码: /******************************************** * 文件名称:
sqlist
.h
·
2015-11-11 05:50
C语言
不带头结点,头部插入法创建链表
ListSize 100 typedef int DataType; typedef struct{ DataType *data; int length; int size; }
Sqlist
·
2015-11-11 04:13
链表
快速排序
快速排序算法 void quicksort (
sqlist
r, int s, int t) { int i=s, j=t;  
·
2015-11-09 13:03
快速排序
简单选择排序
简单选择排序算法 void selectsort (
sqlist
r, int n) { int i, j, min;
·
2015-11-09 13:03
选择排序
【算法】多种排序
#include #include #include #defineOK1 #defineERROR0 typedefstruct{ int*base; intlength; }
SqList
;
for_cxc
·
2015-11-08 22:00
算法
排序
线性表
include #include #include #defineN100 typedefintElenType; typedefstruct { ElenTypedate[N]; intlength; }
SqList
qq_30638831
·
2015-11-07 14:00
struct
线性表
typedef
数据结结构学习 -- 线性表
100 #define LIST_INCREMENT 10 typedef struct { ElemType* elem; int length; int listsize;}
SqList
·
2015-11-03 22:34
线性表
线性表之有序表
#include<iostream> using namespace std; int ListInsert(
SqList
*&L,ElemType e)
·
2015-11-02 18:05
线性表
C#数据结构-排序之快速排序法
代码 public void QuickSort(List < int >
sqlist
, int low,
·
2015-11-01 14:01
数据结构
线性表--算法设计题2.11
算法: Status Insert_
Sqlist
(
SqList
& va, int x) {
·
2015-10-31 11:38
线性表
归并排序
FALSE 0 5 #define MAX_NUM 100 6 typedef int Status; 7 typedef int ElemType; 8 typedef struct
SqList
·
2015-10-31 10:03
归并排序
堆排序
FALSE 0 5 #define MAX_NUM 100 6 typedef int Status; 7 typedef int ElemType; 8 typedef struct
SqList
·
2015-10-31 10:03
堆排序
大数减法运算
#define _TEST_H #include <stdlib.h> #define MAXSIZE 50 struct DoubleList { int
sqlist
·
2015-10-31 10:10
运算
大话数据结构——冒泡排序
/用于排序数组个数的最大值 typedef struct { int r[MAX_SIZE+1];//用于存储要排序的数组 int length;//用于记录顺序表的长度 }
sqlist
·
2015-10-31 09:34
数据结构
大话数据结构——插入排序
/用于排序数组个数的最大值 typedef struct { int r[MAX_SIZE+1];//用于存储要排序的数组 int length;//用于记录顺序表的长度 }
sqlist
·
2015-10-31 09:34
数据结构
顺序线性表的实现
SqList
.h //函数结果状态代码 #define TRUE 1 #define FALSE 0 #define OK 1 #define
·
2015-10-30 13:05
线性表
线性表
定义 (1)顺序存储 typedef struct { ElemType data[MAXSIZE]; int length; }
SqList
; (2
·
2015-10-30 13:31
线性表
数据结构C语言版 题集 部分解答
2.20 顺序表的就地逆置 inverse_
SqList
(int arr[], size_t len) 算法: 前一半和后一半交换 void inverse( int  
·
2015-10-28 08:29
数据结构
堆排序
1 #include<iostream> 2 using namespace std; 3 4 struct
sqlist
5 { 6 int length;
·
2015-10-22 21:29
堆排序
2015年大二上-数据结构-顺序表(1)-求集合并集
*/#include"list.h"#includevoidunionList(
SqList
*LA,
SqList
*LB,SqLi
王耀鹏
·
2015-10-22 12:11
iOS
Sqlist
数据库增、删、查 libsqlite3.0.dylib
//首先添加framework------- libsqlite3.0.dylib //头文件 #import "/usr/include/sqlite3.h" @interface ViewController : UIViewController<UIPopoverControllerDelegate, UISplitViewControllerDe
·
2015-10-21 10:10
sqlite3
第三周项目4—顺序表的应用(2)
//移动结束后,奇数居左,偶数居右 05.voidmove(
SqList
*&L) 06.{ 07.inti=0,j=L->length-1; 08.Ele
WangYangW
·
2015-10-16 08:00
小结
typedefstruct { Elemtypedata[MaxSize]; intlength;}
Sqlist
Wzlwasd
·
2015-10-15 20:00
第三周项目4 顺序表的应用
*文件名称:yingyong#include #include #include"shunxubiao.h" //用数组创建线性表 voidCreateList(
SqList
*&L,ElemTypea
sunxiaojian520
·
2015-10-09 08:00
第三周-删除线性表的元素
include typedefintElemType; #defineMaxSize50 typedefstruct { ElemTypedata[MaxSize]; intlength; }
SqList
zw306362135
·
2015-10-04 17:00
第三周-求集合并集
defineLIST_H_INCLUDED #defineMaxSize50 typedefintElemType; typedefstruct { ElemTypedata[MaxSize]; intlength; }
SqList
zw306362135
·
2015-10-04 17:00
魔术师发牌问题
#include #include typedefstructnode { intdata; structnode*next; }
sqlist
,*linklist; //生成一个单循环链表 linklistCreateLinkList
lzq_20150715
·
2015-09-28 16:00
求集合并集
main.cpp: #include"list.h" //用main写测试代码 #include voidunionList(
SqList
*LA,
SqList
*LB,
SqList
*&
wangjiyuan123
·
2015-09-25 08:00
第3周SHH数据结构—【项目4-顺序表应用问题(2)】
list.h#defineMaxSize50 typedefintElemType; typedefstruct { ElemTypedata[MaxSize]; intlength; }
SqList
qq_23972249
·
2015-09-25 08:00
第3周SHH数据结构—【项目4-顺序表应用问题(1)】
list.h#defineMaxSize50 typedefintElemType; typedefstruct { ElemTypedata[MaxSize]; intlength; }
SqList
qq_23972249
·
2015-09-25 08:00
《大话数据结构》之单链表
typedefintStatus; typedefintElemType; #defineMAXSIZE20 typedefstruct { ElemTypedata[MAXSIZE]; intlength; }
SqList
wang1902568721
·
2015-09-24 16:00
数据结构
单链表
大话数据结构
顺序表应用-奇偶
include typedefintElemType; #defineMaxSize50 typedefstruct { ElemTypedata[MaxSize]; intlength; }
SqList
Wzlwasd
·
2015-09-21 17:00
第三周项目2 建设“顺序表”算法库
问题及代码:1.main.cpp代码#include"list.h" intmain() {
SqList
*sq; ElemTypex[6]={5,8,7,2,4,9}; CreateList
mxyyy123
·
2015-09-21 17:00
顺序表应用-删除元素
include typedefintElemType; #defineMaxSize50 typedefstruct { ElemTypedata[MaxSize]; intlength; }
SqList
Wzlwasd
·
2015-09-21 17:00
上一页
14
15
16
17
18
19
20
21
下一页
按字母分类:
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
其他