码迷,mamicode.com
首页 >  
搜索关键字:sqlist    ( 135个结果
表 未完结
顺序表的初始化 顺序表的取值 顺序表的查找 顺序表的插入 顺序表的删除 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
数据库SQList 添加 查询 修改 删除
SQListActivity Common 公共类 activity_sqlite ...
分类:数据库   时间:2016-09-19 17:52:27    阅读次数:314
SqList *L 和 SqList * &L的区别/学习数据结构突然发现不太懂 小祥我查找总结了一下
小祥在学习李春葆的数据结构教程时发现一个小问题,建立顺序表和输出线性表,这两个函数的形参是不一样的。 代码在这里↓↓↓ 思考这个形参为什么要写成这两种形式,即SqList *L和SqList * &L的区别。 *L是指针,全称是指针变量,是一个用来保存内存地址的变量。在这里是一个指向顺序表,存储顺序 ...
分类:数据库   时间:2016-09-05 01:35:18    阅读次数:228
c++入门05
#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数据库SQList的使用示例
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
SQList的建表并添加数据练习
学生表(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
135条   上一页 1 ... 3 4 5 6 7 ... 14 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!