代码搜索:抄表器
找到约 10,000 项符合「抄表器」的源代码
代码结果 10,000
www.eeworm.com/read/187320/8833681
gif 到站表.gif
www.eeworm.com/read/187320/8833695
gif 订票表.gif
www.eeworm.com/read/187320/8833706
gif 退票表.gif
www.eeworm.com/read/428784/8841464
c 顺序表.c
# define maxsize 50
struct sqlist
{
int sqlist[maxsize];
int key;
int size;
int data;
};
setnull(struct sqlist *p) /*装入表*/
{
p->size=0;
}
int length(
www.eeworm.com/read/384068/8903197
txt 创建表.txt
CREATE TABLE STUDENT(
SNO CHAR(10) PRIMARY KEY,
SNAME CHAR(10),
SEX CHAR(4),
AGE SMALLINT,
USERNAME CHAR(10),
PASSWORD CHAR(10)
);
CREATE TABLE SC(
SNO CHAR(10),
CNO CHAR(10),
GRADE INT
www.eeworm.com/read/382773/9000637
cpp 顺序表.cpp
#include
#include
#include
#define LENGTH 30
typedef int ElemType;
typedef struct {
ElemType *data;
int length;//第几个元素
int size;
}ListNode;
//创建一个
www.eeworm.com/read/184962/9063229
mb 表操作.mb
'1、新建表Create Table
'2、向表中添加数据Insert
'3、读取表中的数据FetcH
'4、修改表结构Alter Table
'5、修改表的结构Add Column
'6、建立字段索引Creat Index
'7、修改表的结构Creat Map
'8、修改表的结构DropMap
'9、编辑行Update
'10、删除行Delete
'11、删除一个表Drop
www.eeworm.com/read/181921/9226628
txt 哈希表.txt
#include
#include
typedef struct node{
int number;
struct node *next;
}Node;
int main(void){
int i,first=1;
Node *hash[1000]={NULL};
for(i=0;i
www.eeworm.com/read/181921/9226629