代码搜索:信息存储
找到约 10,000 项符合「信息存储」的源代码
代码结果 10,000
www.eeworm.com/read/329623/12943863
jpg 链式存储.jpg
www.eeworm.com/read/329623/12943876
txt 顺序存储.txt
#include
#include
#define elemtype int
typedef struct LsNode{
elemtype *elem;//给栈以动态形式分配内存,elem=(elemtype *)malloc(sizeof(elemtype)*length);
int length; //栈的空间大小,可以由用户来决
www.eeworm.com/read/329623/12943883
txt 链式存储.txt
#include
#include
#include
#define MAX 10
using namespace std;
typedef char ElemType;
typedef struct LNode
{
ElemType data;
struct LNode*next;
}LinkList;
/*链表初始
www.eeworm.com/read/329623/12943888
jpg 顺序存储.jpg
www.eeworm.com/read/301756/13848974
txt 存储过程.txt
create or replace procedure jdel
(
v_sl base.jsl%type;
re in number;
)
is
begin
select base.jsl into v_sl
from base
where base.jid=jhand.jid;
if base.jsl
www.eeworm.com/read/404596/11481640
txt 存储过程.txt
存储过程,查看某天销售了哪些书,各销售了多少本,每种书的销售总价。
CREATE PROC DateSales @date datetime
as
select OrderDate ,OrderDetails.BookID, Books.BookName,Quantity , Books.UnitPrice*Quantity as totalprice
fr
www.eeworm.com/read/404210/11490298
c 数据存储.c
#include "数据存储.h"
#include "FM24C256.H"
/*
铁电存储器中
0-1:纪录的条数
1-2: 记录没法送的起始位置
3-4: 自动发送的触发时间
10-50 服务器IP地址
〉100:纪录数据
*/
xdata unsigned char ServerIp[40];
xdata DataType DataBuf;
id
www.eeworm.com/read/404210/11490299
h 数据存储.h
typedef struct
{
unsigned char datetime[12];
unsigned char name[10];
unsigned char id[20];
}DataType;
extern xdata unsigned char ServerIp[40];
unsigned int GetDataCount(void);
void
www.eeworm.com/read/404210/11490324