搜索结果
找到约 122 项符合
struct 的查询结果
按分类筛选
- 全部分类
- Java编程 (21)
- 其他 (14)
- 源码 (10)
- 技术资料 (9)
- 数据结构 (8)
- 软件设计/软件工程 (5)
- 单片机编程 (3)
- 操作系统开发 (3)
- 书籍源码 (3)
- Linux/Unix编程 (3)
- Java书籍 (3)
- Jsp/Servlet (3)
- 习题答案 (2)
- Linux/uClinux/Unix编程 (2)
- 技术书籍 (2)
- 压缩解压 (2)
- 企业管理 (2)
- 数学计算 (2)
- 汇编语言 (2)
- 单片机开发 (2)
- 软件 (1)
- 书籍 (1)
- C/C++语言编程 (1)
- 数据库系统 (1)
- 其他书籍 (1)
- 电子书籍 (1)
- 驱动编程 (1)
- 教育系统应用 (1)
- 游戏 (1)
- 编译器/解释器 (1)
- *行业应用 (1)
- 文件格式 (1)
- 人工智能/神经网络 (1)
- 文章/文档 (1)
- matlab例程 (1)
- 其他行业 (1)
- 系统设计方案 (1)
- JavaScript (1)
- VC书籍 (1)
- SQL Server (1)
- VIP专区 (1)
其他 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 <stdio.h> #include <stdlib.h> #define OK 1 #define OVERFLOW -2
#include <stdio.h>
#include <stdlib.h>
#define OK 1
#define OVERFLOW -2
typedef int status
typedef struct LinkList{ //用带表头结点的有序链表表示多项式
float coef //系数
int expn //指数
struct LinkList *next //指向后继的指针
}*polynomail //结构体类型的指针 ...
企业管理 JAVA实现的中小型企业CRM客户关系管理系统
JAVA实现的中小型企业CRM客户关系管理系统,为Struct Spring Ibatis架构实现,企业应用或者学习的好系统
压缩解压 資料壓縮技術與應用~霍夫曼編碼壓縮及解壓縮(Huffman Coding)~資料結構:霍夫曼樹
資料壓縮技術與應用~霍夫曼編碼壓縮及解壓縮(Huffman Coding)~資料結構:霍夫曼樹,結構struct
软件设计/软件工程 顺序栈的出栈、入栈、求栈长等基本操作 #include <stdio.h> #include <stdlib.h> #define STACKSIZE 50 typed
顺序栈的出栈、入栈、求栈长等基本操作
#include <stdio.h>
#include <stdlib.h>
#define STACKSIZE 50
typedef char DateType
typedef struct
数据结构 经典数据结构中较难的平衡二叉排序树的操作
经典数据结构中较难的平衡二叉排序树的操作,考虑到较多同学都需要,特此上传,c++实现,需要做异质树的自行把struct改为class既可。
Linux/Unix编程 帧缓冲#include <stdio.h> #include <stdlib.h> #include <string.h> #include <s
帧缓冲#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdint.h>
#include <unistd.h>
#include <fcntl.h>
#include <sys/ioctl.h>
#include <sys/mman.h>
#include <asm/page.h>
#include <linux/fb.h>
#define TRUE 1
#define FALSE 2
//a framebuffer device structure
typed ...