码迷,mamicode.com
首页 >  
搜索关键字:datatype missmatch    ( 1091个结果
Android SQLite 简单使用示例
SQLite简介 Google为Andriod的较大的数据处理提供了SQLite,他在数据存储、管理、维护等各方面都相当出色,功能也非常的强大。 袖珍型的SQLite可以支持高达2TB大小的数据库,每个数据库都是以单个文件的形式存在,这些数据都是以B-Tree的数据结构形式存储在磁盘上。 在事务处理方面,SQLite通过数据库级上的独占性和共享锁来实现独立事务处理。这意味着多个进程可以在同一...
分类:移动开发   时间:2015-08-16 12:19:41    阅读次数:142
_DataStructure_C_Impl:LinkListBasedSort
#include #include #include"LinkList.h" //创建单链表 void CreateList(LinkList L,DataType a[],int n){ int i; for(i=1;i<=n;i++) InsertList(L,i,a[i-1]); } //用链表实现选择排序。将链表分为两段,p指向应经排序的链表部分,q指向未排序的链表部分 void...
分类:其他好文   时间:2015-08-14 06:33:17    阅读次数:156
_DataStructure_C_Impl:SeqListBasedSort
// _DataStructure_C_Impl:Sort #include #include #define MaxSize 50 typedef int KeyType; //数据元素类型定义 typedef struct{ KeyType key; //关键字 }DataType; //顺序表类型定义 typedef struct{ DataType data[MaxSize]; in...
分类:其他好文   时间:2015-08-14 01:06:02    阅读次数:161
_DataStructure_C_Impl:哈希表
#include #include typedef int KeyType; //元素类型定义 typedef struct{ KeyType key; //关键字 int hi; //冲突次数 }DataType; //哈希表类型定义 typedef struct{ DataType *data; int tableSize; //哈希表的长度 int curSize; //表中关...
分类:其他好文   时间:2015-08-13 06:32:50    阅读次数:124
_DataStructure_C_Impl:二叉排序树的查找
#include #include typedef int KeyType; //元素的定义 typedef struct{ KeyType key; }DataType; //二叉排序树的类型定义 typedef struct Node{ DataType data; struct Node *lchild,*rchild; }BiTreeNode,*BiTree; //二叉排序树的查找...
分类:编程语言   时间:2015-08-13 06:32:29    阅读次数:142
_DataStructure_C_Impl:在顺序表中查找元素
// _DataStructure_C_Impl:Search #include #include #define MaxSize 100 #define IndexSize 20 typedef int KeyType; //元素的定义 typedef struct{ KeyType key; }DataType; //顺序表的类型定义 typedef struct{ DataType li...
分类:其他好文   时间:2015-08-13 06:30:43    阅读次数:111
_DataStructure_C_Impl:求图G中从顶点u到顶点v的一条简单路径
#include#pragma once #include #include #define StackSize 100 typedef int DataType; //栈元素类型定义 typedef struct{ DataType stack[StackSize]; int top; }SeqStack; //将栈初始化为空栈只需要把栈顶指针top置为 void InitStack(Seq...
分类:其他好文   时间:2015-08-12 06:45:08    阅读次数:136
java一维数组学习
/* * java学习: * 一维数组的使用: 声明语法 DataType[] name 或 DataType name[]。 初始化语法 DataType[] name = new DataType[length]。 DataType[] name = new DataT...
分类:编程语言   时间:2015-08-11 22:54:46    阅读次数:140
ORACLE 第7节 创建和管理表
?用户定义的表: –用户自己创建并维护的一组表 –包含了用户所需的信息 如:SELECT * FROM user_tables;查看用户创建的表 CREATE TABLE 语句 ?必须具备: –CREATE TABLE权限 –存储空间 CREATE TABLE [schema.]table       (column datatype[D...
分类:数据库   时间:2015-08-10 00:29:25    阅读次数:192
_DataStructure_C_Impl:二叉树的二叉链表存储结构
// _DataStructure_C_Impl: #include #include #define MaxSize 100 typedef char DataType; typedef struct Node{ //二叉链表存储结构类型定义 DataType data; //数据域 struct Node *lchild; //指向左孩子结点 struct Node *rchild...
分类:其他好文   时间:2015-08-10 00:23:02    阅读次数:116
1091条   上一页 1 ... 77 78 79 80 81 ... 110 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!