Welcome![Sign In][Sign Up]
Location:
Search - 结构体

Search list

[Windows Develop在com中使用结构体枚举

Description: 在com中使用结构体枚举-used in the structure of Enumerate
Platform: | Size: 31597 | Author: 彦顺 | Hits:

[Other找出结构体中最大数

Description: 找出结构体中最大数初次用C作的小程序-identify the structure of the largest number of initial C for the small program
Platform: | Size: 987 | Author: 张大海 | Hits:

[File Operate结构体序列化读写二进制文件类

Description: 结构体序列化读写二进制文件类
Platform: | Size: 1898 | Author: lxy8012 | Hits:

[Books数据结构(C#语言版)

Description: 数据结构(C#语言版) 计算机程序语言书: 目 录 第1章 绪论 1 1.1 数据结构 1 1.1.1 学习数据结构的必要性 1 1.1.2 基本概念和术语 2 1.2 算法 7 1.2.1 算法的特性 7 1.2.2 算法的评价标准 8 1.2.3 算法的时间复杂度 9 1.3 数学预备知识 11 1.3.1 集合 11 1.3.2 常用的数学术语 11 1.3.3 对数 12 1.3.4 递归 12 1.4 C预备知识 13 1.4.1 指针 13 1.4.2 结构体 14 1.5 C#预备知识 15 1.5.1 接口 15 1.5.2 泛型编程 19 本章小结 24 习题 25 第2章 线性表 27 2.1 线性表的逻辑结构 27 2.1.1 线性表的定义 27 2.1.2 线性表的基本操作 28 2.2 顺序表 30 2.2.1 顺序表的定义 30 2.2.2 顺序表数据关系的语言描述 31 2.2.3 顺序表数据操作的语言描述 32 2.2.4 顺序表应用举例 42 2.3 单链表 46 2.3.1 单链表的定义 47 2.3.2 单链表数据关系的语言描述 48 2.3.3 单链表数据操作的语言描述 50 2.3.4 单链表应用举例 65 2.4 其他链表 73 2.4.1 双向链表 73 2.4.2 循环链表 76 本章小结 76 习题 77 第3章 栈和队列 78 3.1 栈 78 3.1.1 栈的定义及基本运算 78 3.1.2 顺序栈的存储和运算实现 80 3.1.3 链栈的存储和运算实现 85 3.1.4 栈的应用举例 90 3.2 队列 96 3.2.1 队列的定义及基本运算 96 3.2.2 循环顺序队列的存储和运算 实现 98 3.2.3 链队列的存储和运算实现 106 3.2.4 队列的应用举例 111 本章小结 113 习题 113 第4章 串和数组 115 4.1 串 115 4.1.1 串的基本概念及基本运算 115 4.1.2 串存储及基本运算实现 116 4.1.3 串的基本操作的实现 120 4.1.4 模式匹配 125 4.2 数组 131 4.2.1 数组的逻辑结构 131 4.2.2 数组的内存映像 132 本章小结 133 习题 133 第5章 树和二叉树 134 5.1 树 134 5.1.1 树的定义 134 5.1.2 树的相关术语 135 5.1.3 树的逻辑表示 136 5.1.4 树的基本操作 137 5.2 二叉树 138 5.2.1 二叉树的定义 138 5.2.2 二叉树的性质 139 5.2.3 二叉树的存储结构 141 5.2.4 二叉链表存储结构的语言 描述 143 5.2.5 二叉树的遍历 146 5.2.6 线索二叉树 150 5.3 树与森林 153 5.3.1 树的存储 153 5.3.2 树、森林与二叉树的转换 157 5.3.3 树和森林的遍历 160 5.4 哈夫曼树 160 5.4.1 哈夫曼树的基本概念 160 5.4.2 哈夫曼树的实现 162 5.4.3 哈夫曼编码 166 5.5 二叉树的应用举例 167 本章小结 171 习题 172 第6章 图 174 6.1 图的基本概念 174 6.1.1 图的定义 174 6.1.2 图的基本术语 175 6.1.3 图的基本操作 178 6.2 图的存储结构 179 6.2.1 邻接矩阵 179 6.2.2 邻接表 187 6.3 图的遍历 199 6.3.1 深度优先遍历 199 6.3.2 广度优先遍历 202 6.4 图的应用 205 6.4.1 最小生成树 205 6.4.2 最短路径 210 6.4.3 拓扑排序 216 本章小结 218 习题 219 第7章 排序 221 7.1 基本概念 221 7.2 简单排序方法 222 7.2.1 直接插入排序 222 7.2.2 冒泡排序 225 7.2.3 简单选择排序 226 7.3 快速排序 229 7.4 堆排序 233 7.5 希尔排序 240 7.6 表插入排序 242 7.7 归并排序 247 7.8 树型选择排序 251 7.9 基数排序 252 7.9.1 多关键码排序 252 7.9.2 链式基数排序 253 7.10 各种排序方法的比较与讨论 255 本章小结 256 习题 257 第8章 查找 259 8.1 基本概念和术语 259 8.2 静态查找表 259 8.2.1 顺序查找 260 8.2.2 有序表的折半查找 261 8.2.3 索引查找 265 8.3 动态查找表 266 8.3.1 二叉排序树 266 8.3.2 平衡二叉树 276 8.3.3 B-树和B+树 278 8.4 哈希表 285 8.4.1 哈希表的基本概念 286 8.4.2 常用的哈希函数构造方法 286 8.4.3 处理冲突的方法 288
Platform: | Size: 1345925 | Author: lovevicky | Hits:

[Windows Develop在com中使用结构体枚举

Description: 在com中使用结构体枚举-used in the structure of Enumerate
Platform: | Size: 31744 | Author: 彦顺 | Hits:

[GIS programMapXpro005

Description: 利用VC环境,自制的一个模似民航飞机跟踪系统。其中关键在于自制了一个结构体。-VC environment, a self-made for it to the civil aircraft tracking system. The key lies in the structure of a self-made body.
Platform: | Size: 161792 | Author: 阿腾 | Hits:

[Other找出结构体中最大数

Description: 找出结构体中最大数初次用C作的小程序-identify the structure of the largest number of initial C for the small program
Platform: | Size: 1024 | Author: 张大海 | Hits:

[Hotel software system酒店停车系统

Description: 1. 用一个包含大小为MAX+1的数组结构体RoomArray来表示客房列表,其数组元素为表示车辆停车信息的结构体GuestNode,用链表队列LinkQueueGuest表示等待队列,其节点元素为表示车辆停车信息的结构体QueueGuest;-1. With a size of MAX contains an array of the structure RoomArray said Rooms to list its array elements to said vehicle parking structure of the information GuestNode with Queue List LinkQueueGuest wait for Queue, said node elements for vehicle parking structure of the information QueueGuest;
Platform: | Size: 35840 | Author: yang | Hits:

[Windows Developsf_200562516252

Description: 一个线程驰的类, 下面的是基本的使用方法 struct TSession { SOCKET socket int id } class myIocp:public CIOCP { public: void OnRead(void * p, char * buf, int len) void OnAccept(SOCKET socket) void OnClose(void * p) } void myIocp::OnAccept(SOCKET socket) { TSession *s = new TSession s->socket = socket //这里可以对连接的session进行自己的操作,例如给id找一个唯一的值 SetIoCompletionPort(socket, s) // 使连接socket与一个自定义结构体关联 } void myIocp::OnRead(void * p, char * buf, int len) { TSession *s = (TSession *)p send(s->socket, buf, len, 0) // 这里只是简单的把收到的消息返回给客户端 ... } void myIocp::OnClose(void * p) { delete p } myIoncp iocp main() { ... iocp.listen(4311) // 开始监听网络端口,等待客户端连接 ... }-A class for thread pool,basic usage below: struct TSession { SOCKET socket int id } class myIocp:public CIOCP { public: void OnRead(void* p, char* buf, int len) void OnAccept(SOCKET socket) void OnClose(void* p) } void myIocp::OnAccept(SOCKET socket) { TSession*s = new TSession s->socket = socket //here you can do something about connection session,such as find a unique id. SetIoCompletionPort(socket, s) // make connection socket associate with a custom structure } void myIocp::OnRead(void* p, char* buf, int len) { TSession*s = (TSession*)p send(s->socket, buf, len, 0) // return received message to client void myIocp::OnClose(void* p) { delete p } myIoncp iocp main() { ... iocp.listen(4311) //start listenning net port,wait for client connect.
Platform: | Size: 2048 | Author: boxu | Hits:

[source in ebook仓库管理系统(C语言)

Description: 一个仓库管理系统,用C语言编写的,之前做过学生成绩管理系统与此有相同的地方。采用结构体数组,具有输入商品,排序的功能,用菜单实现查询,学习C语言的好程序-a warehouse management system using the C language, the students did before the performance management system with the same place. Using the structure of the array, with the importation of goods, sorting functions, using the menu to achieve inquiries, the C language learning program is
Platform: | Size: 2048 | Author: | Hits:

[Communicationrfidapi

Description: 用在32位计算机上的串口通信打包接口库文件.前面的各种结构体,除了因为字宽原因, 使用了不同数据类型以外,实际效果与相应的单片机程序接口是一致的.平台独立.-with 32 computers in the serial communication interface library package. In front of the structure, in addition to the reasons for wide characters, the use of different data types, the actual results with the corresponding microcontroller interface is the same. Platform independence.
Platform: | Size: 961536 | Author: 谢经波 | Hits:

[Data structsxishujuzenh

Description: 稀疏矩阵 1、 应用程序 直接可以实现矩阵的各项操作。 2、 查看原代码VC++6.0打开“稀疏矩阵\creatematrix.dsp”或者用记事本打开“稀疏矩阵\creatematrix.cpp” 3、 代码简单说明: 本程序是一个工程文件包含了链式与顺序两种多项是处理方式: 十字链表:矩阵的结构体:matnode; 三元组顺序:矩阵结构体:tsmat 4、ADT在文件夹“稀疏矩阵”里 -a sparse matrix, the application can be achieved directly by the matrix operation. 2, VC View 6.0 source code open "Sparse Matrix \ creatematrix.dsp" or use Notepad to open the "sparse matrix \ creatematrix.cpp" 3, code simple note : this program is a project file contains a sequence of two chain with a number of approaches : Cross Chain : the structure of the matrix : matnode; Triples order : the structure matrix : tsmat 4, ADT in the folder "Sparse Matrix"
Platform: | Size: 16384 | Author: upcorange | Hits:

[Windows DevelopRecallDLLSample

Description: 在C#里面调用带有回调函数和自定义结构体的DLL的例程.-in C# inside with a call from the callback function and the structure of the definition of the DLL routines.
Platform: | Size: 5120 | Author: tanwh | Hits:

[OS programVCdiary

Description: 一个基于对话框的日记本小程序。以前在VC知识库中找基于对话框的序列化存储的程序一直没有找到,就自己做了一个。用到了链表和序列化,在对话框中使用工具栏,希望对大家有所帮助。首先,定义一个自己的结构体类,用来存储将要保存的信息。-a dialog based on the diary of the small procedures. In the past, VC knowledge base based on the dialog box to find the sequence of stored procedure has not been found, it had become one. Listless and used in the sequence, in the dialog box using the tool column, we hope to help. First, a definition of the structure type, will be used to store the information stored.
Platform: | Size: 18432 | Author: yqw | Hits:

[assembly languagestructuse

Description: C++结构体这章的程序,学生信息的显示。对学习这章的同学可能会有帮助。-C structure of the procedures in this chapter, the student information display. Learning to the students in this chapter may be helpful.
Platform: | Size: 1024 | Author: 尘埃未落 | Hits:

[VC/MFCMISRA_C

Description: 第一讲:“‘安全第一’的C语言编程规范”,简述MISRAC的概况。   第二讲:“跨越数据类型的重重陷阱”,介绍规范的数据定义和操作方式,重点在隐式数据类型转换中的问题。   第三讲:“指针、结构体、联合体的安全规范”,解析如何安全而高效地应用指针、结构体和联合体。   第四讲:“防范表达式的失控”,剖析MISRAC中关于表达式、函数声明和定义等的不良使用习惯,最大限度地减小各类潜在错误。   第五讲:“准确的程序流控制”,表述C语言中控制表达式和程序流控制的规范做法。   第六讲:“构建安全的编译环境”,讲解与编译器相关的规范编写方式,避免来自编译器的隐患。-first : " 'safety first' C programming language norms," MISRAC brief overview. 2nd : "data across numerous types of traps" to introduce a standardized data definitions and practices, focus on the implicit data type conversion problems. 3rd : "pointer, the structure, the Commonwealth of safety norms," Analysis of the safe and effective use of indicators, and the structure of the Commonwealth. 4th : "prevent the uncontrolled expression," MISRAC analysis on the expression, function declaration and the definition of bad habits to minimize various types of potential error. 5th : "accurate flow control procedures," expressing C language expression and control program flow control norm. 6th : "to establish a secure environment for the
Platform: | Size: 87040 | Author: 阿木 | Hits:

[Other结构体项目

Description: 一个简单的结构体项目代码,可以以此为框架,加强对此类项目的理解(A simple structure item code)
Platform: | Size: 1024 | Author: 凌风zero | Hits:

[CSharp结构体

Description: C语言结构体的部分程序实例( 定义一个表示向量(vector,即整数序列)的结构体类型,编写程序完成下列任务: * (1) 创建一个向量; * (2) 修改给定元素的值; * (3) 向量和变量的乘;)(Some program instances of C language structure)
Platform: | Size: 2048 | Author: ZJY96 | Hits:

[Communication-MobileIEC61850-9-2结构体

Description: IEC61850-9-2协议在DSP28335上的结构体编程。(The structure of the IEC61850-9-2 protocol is programmed on the DSP28335.)
Platform: | Size: 1024 | Author: 春飞燕 | Hits:

[Linux-Unix条件编译和结构体

Description: linux的基础知识,应用C语言的条件编译和结构体(Conditional compilation and structure)
Platform: | Size: 1024 | Author: 卓1 | Hits:
« 12 3 4 5 6 7 8 9 10 ... 50 »

CodeBus www.codebus.net