搜索结果
找到约 113 项符合
Struct 的查询结果
按分类筛选
- 全部分类
- Java编程 (19)
- 其他 (14)
- 源码 (10)
- 数据结构 (8)
- 软件设计/软件工程 (5)
- 单片机编程 (3)
- 书籍源码 (3)
- Jsp/Servlet (3)
- Java书籍 (3)
- 操作系统开发 (3)
- Linux/Unix编程 (3)
- 技术书籍 (2)
- 数学计算 (2)
- 汇编语言 (2)
- 单片机开发 (2)
- 企业管理 (2)
- 压缩解压 (2)
- Linux/uClinux/Unix编程 (2)
- 习题答案 (2)
- 技术资料 (2)
- C/C++语言编程 (1)
- 文件格式 (1)
- 其他行业 (1)
- 电子书籍 (1)
- 编译器/解释器 (1)
- 系统设计方案 (1)
- SQL Server (1)
- matlab例程 (1)
- 游戏 (1)
- VC书籍 (1)
- 人工智能/神经网络 (1)
- 其他书籍 (1)
- 教育系统应用 (1)
- 文章/文档 (1)
- 数据库系统 (1)
- 驱动编程 (1)
- *行业应用 (1)
- JavaScript (1)
- 软件 (1)
- 书籍 (1)
- VIP专区 (1)
其他 // algo3-12.cpp 银行业务模拟。实现算法3.6、3.7的程序 #define Qu 4 // 客户队列数 #define Khjg 5 // 两相邻到达的客户的时间间隔最大值
// algo3-12.cpp 银行业务模拟。实现算法3.6、3.7的程序
#define Qu 4 // 客户队列数
#define Khjg 5 // 两相邻到达的客户的时间间隔最大值
#define Blsj 30 // 每个客户办理业务的时间最大值
#include"c1.h"
typedef struct // 定义ElemType为结构体类型
{
int OccurTime // 事件发生时刻
int NType // 事件类型 ...
其他 Different methods for generating pyramid data structure have been analysed, thesea fast algorithm of
Different methods for generating pyramid data structure have been analysed, thesea fast algorithm of pyramid data struct is provided.
数据结构 #include<malloc.h> #include<limits.h> #include<stdio.h> #include<graphics.h&
#include<malloc.h>
#include<limits.h>
#include<stdio.h>
#include<graphics.h>
#include<io.h>
#include<math.h>
#include<process.h>
#include<conio.h>
#define m 100
#define OK 1
typedef int Status
typedef char TElemType /*树元素的类型*/
int t=35
int n=20
int h=14
int u=2
int leaf=0,non_l_leaf=0,non ...
游戏 五子棋小游戏#include<stdlib.h> #include<time.h> #include<stdio.h> #include<conio.h
五子棋小游戏#include<stdlib.h>
#include<time.h>
#include<stdio.h>
#include<conio.h>
int chess[169]={0} /*棋盘*/
struct chess_t/*作为辅助,即是作为建意*/
{
char attack /*攻防用的,0表示守,1表示攻*/
int j /*作为优先级用*/
}chess_a[169] ...
VC书籍 C++名家精华.chm 我们用早期的C++语言编程。工作的第二天中午
C++名家精华.chm
我们用早期的C++语言编程。工作的第二天中午,厌烦了读职工手册,于是我写了一个工具类,里面包含一个原始指针作为成员变量:
#include "xStruct.h" // definition of struct X
class xWrapper
{
X* xItem
public:
xWrapper() : xItem(new X) { }
~xWrapper() { delete xItem }
void dump() { /* ...
操作系统开发 我所采用的内存管理思想是链表管理思想
我所采用的内存管理思想是链表管理思想,内存分配方案是最佳适应方案(best fit)。其主要的数据结构为
struct node
{
char* p
int memosize
int flag
struct node* next
}
这是一个链表的结点的数据结构,用它来管理内存的分配与回收。P 表示所指的分配的内存的首地址,memosize 表示分配的内存块的大小,flag 为 ...
Linux/Unix编程 linux2.6 驱动的描述
linux2.6 驱动的描述,struct resource,struct platform_device和驱动的关系
压缩解压 資料壓縮技術與應用~霍夫曼編碼壓縮及解壓縮(Huffman Coding)~資料結構:霍夫曼樹
資料壓縮技術與應用~霍夫曼編碼壓縮及解壓縮(Huffman Coding)~資料結構:霍夫曼樹,結構struct