搜索结果
找到约 48 项符合
linked 的查询结果
按分类筛选
- 全部分类
- 数据结构 (7)
- 技术资料 (4)
- 数学计算 (3)
- 其他 (2)
- 其他书籍 (2)
- 电子书籍 (2)
- Linux/Unix编程 (2)
- 编译器/解释器 (2)
- Java编程 (2)
- 汇编语言 (2)
- 软件设计/软件工程 (2)
- DSP编程 (1)
- 书籍源码 (1)
- 技术书籍 (1)
- 可编程逻辑 (1)
- 源码/资料 (1)
- 驱动编程 (1)
- 网络 (1)
- 嵌入式/单片机编程 (1)
- 文章/文档 (1)
- Java书籍 (1)
- Delphi/CppBuilder (1)
- matlab例程 (1)
- 家庭/个人应用 (1)
- VC书籍 (1)
- 其他嵌入式/单片机内容 (1)
- 行业发展研究 (1)
- MTK (1)
- VIP专区 (1)
其他 This is a safe double linked list data structure in order to store data on void* pointer for data se
This is a safe double linked list data structure in order to store data on void* pointer for data segment.
Java编程 LINKED LIST OF JAVA, use abstrct classes, hope some data structure can been learn better
LINKED LIST OF JAVA, use abstrct classes, hope some data structure can been learn better
家庭/个人应用 Complete video store application in C++ using linked lists to store data in files. it keeps track of
Complete video store application in C++ using linked lists to store data in files. it keeps track of videos and customers and have many checks and options.
书籍源码 Template functions for serializing arbitrary linked nodes. 串行化连接节点的模板函数(源码)(25KB)
Template functions for serializing arbitrary linked nodes.
串行化连接节点的模板函数(源码)(25KB)
数据结构 一种基于二维链表的稀疏矩阵模半板类设计 A template Class of sparse matrix. Key technology: bin,2-m linked matrix. con
一种基于二维链表的稀疏矩阵模半板类设计
A template Class of sparse matrix.
Key technology: bin,2-m linked matrix.
constructors: 1.normal constuctor 2.copy constuctor. 3.assignment constructor.
Basic operator: 1. addition(sub) of two matrix
2. inverse of a matrix.
3. multiply of two matrix.
etc ...
嵌入式/单片机编程 1、链接存储方法 链接方式存储的线性表简称为链表(Linked List)。 链表的具体存储表示为: ① 用一组任意的存储单元来存放线性表的结点(这组存储单元既可以是连续的
1、链接存储方法
链接方式存储的线性表简称为链表(Linked List)。
链表的具体存储表示为:
① 用一组任意的存储单元来存放线性表的结点(这组存储单元既可以是连续的,也可以是不连续的)
② 链表中结点的逻辑次序和物理次序不一定相同。为了能正确表示结点间的逻辑关系,在存储每个结点值的同时,还必须存 ...
汇编语言 find the information about a host with the DNS retrieving system calls, such as gethostbyname() and
find the information about a host with the DNS retrieving system calls, such as gethostbyname() and gethostbyaddr().
(2) All the required information are in the hostent structure.
(3) All the aliases and IP addresses of the host is stored in the hostent structure using linked list (链表).
电子书籍 A dynamic-link library (DLL) contains one or more subprogram procedures (functions or subroutines)
A dynamic-link library (DLL) contains one or more subprogram procedures
(functions or subroutines) that are compiled, linked, and stored separately from
the applications using them. Because the functions or subroutines are separate
from the applications using them, they can be shared or replaced eas ...
汇编语言 EXAMPLE SOURCE CODE FOR TASM FILTER his filter accepts input through the standard input stream, con
EXAMPLE SOURCE CODE FOR TASM FILTER
his filter accepts input through the standard input stream, converts it and outputs it to the standard output stream. The streams are linked
through pipes, such that the input stream is the output from the assembler
being invoked, and the output stream is connecte ...
数据结构 /* * The internal form of a hash table. * * The table is an array indexed by the hash of the k
/*
* The internal form of a hash table.
*
* The table is an array indexed by the hash of the key collisions
* are resolved by hanging a linked list of hash entries off each
* element of the array. Although this is a really simple design it
* isn t too bad given that pools have a low allocation ...