顺序表的初始化 顺序表的取值 顺序表的查找 顺序表的插入 顺序表的删除 typdef struct { Element *elem; int length; } status InitList(SqList &L){L.elem = new Element[MAXSIZE];if(!L.elem) ...
分类:
其他好文 时间:
2016-10-30 07:24:09
阅读次数:
248
#include<stdio.h>#include<stdlib.h>typedefstruct{ int*pArr; intlength;//数组最大容量 intcnt;//当前数组有效个数}SqList;voidinit_arr(SqList*,intlength);voiddestroy_arr();voidremove_arr(SqList*,int,int*);voidappend_arr(SqList*,int);voidinsert_arr(S..
分类:
编程语言 时间:
2016-10-21 02:05:01
阅读次数:
284
SQListActivity Common 公共类 activity_sqlite ...
分类:
数据库 时间:
2016-09-19 17:52:27
阅读次数:
314
小祥在学习李春葆的数据结构教程时发现一个小问题,建立顺序表和输出线性表,这两个函数的形参是不一样的。 代码在这里↓↓↓ 思考这个形参为什么要写成这两种形式,即SqList *L和SqList * &L的区别。 *L是指针,全称是指针变量,是一个用来保存内存地址的变量。在这里是一个指向顺序表,存储顺序 ...
分类:
数据库 时间:
2016-09-05 01:35:18
阅读次数:
228
#include "iostream"template<class T>class Sqlist{//顺序表 private: int n; int last;//表尾指针 int MaxSize;//最大变长 T*data;//表元素数组 public: Sqlist(int Max=10);// ...
分类:
编程语言 时间:
2016-06-18 06:42:23
阅读次数:
234
Android 提供了三种数据存储方式,第一种是文件存储;第二种是SharedPreferences存储;第三种就是数据库SQLiteDatabase存储。文件存储我就不用多说了,而SharedPreferences可以存取简单的数据(int,double,float.etc),它经常用于数据缓存, ...
分类:
移动开发 时间:
2016-06-14 22:24:16
阅读次数:
919
#include<stdio.h>#define MaxSize 10//定义链表的最大长度#include<stdlib.h> //链表的插入操作 void insertElem(int *sqlist,int*len,int index,int elem){ if(index>(*len)||i ...
分类:
编程语言 时间:
2016-06-07 22:26:07
阅读次数:
229
#include<iostream>using namespace std;template<typename T>class SqList{private: int count;//实际元素个数 int Maxsize;//数组最大长度 T *elem;public: SqList(int siz ...
分类:
其他好文 时间:
2016-05-31 12:21:45
阅读次数:
150
学生表(Student)、课程表(Course)、成绩表(Score)以及教师信息表(Teacher)的数据库创建以及信息添加。 一.学生表(Student) 二.课程表(Course) 三.成绩表(Score) 四.教师信息表(Teacher) ...
分类:
数据库 时间:
2016-05-28 23:11:19
阅读次数:
946
SqList typedef struct { ElemType *elem; //存储空间基址 int length; //当前长度 int listsize; //当前容量 }SqList ; L->elem = (ElemType*)mallloc(LIST_INIT_SIZE*sizeof(... ...
分类:
其他好文 时间:
2016-05-20 22:11:46
阅读次数:
148