搜索资源列表
list
- 一个自己编写的双向链表的C语言实现程序,有详尽的链表操作函数,可以作为C语言学习的参考代码,附送Linux C函数手册一份
u-boot_kernel
- 本文介绍了嵌入式系统BootLoader与Linux-2.6.19.2内核参数传递的具体实现。主 要内容包括:系统硬件平台的简介,参数链表的结构和创建,内核的接收
list_linux
- 数据结构自己写的linux链表的实现,希望对大家有用
list_re
- 数据结构自己写的循环链表的实现,希望对大家有用
C++NeiCunFenPei
- C++模拟内存分配 一、思路 模拟编译系统的内存分配与释放的,实现一些简单的操作。首先用一个静态数组模拟内存空间(buf),当调用申请内存操作时,将从数组空间(buf)返回给调用者一定的空间,当调用释放内存的时候,将将指定部分的内存标记为未用。 1.分配规则 每块被分配或释放的内存由MemInfo记录,并保存于数组(buf)中作为内存空间的“头”,其后紧跟数据。MemInfo组成链表结构,表头不占用数组空间(buf)。当调用者申请内存时,将导致MemInfo链表的遍历,遍历的
list
- 实现不带头结点的单循环链表的基本功能,如插入删除结点,以及如何构造一个无头结点的单循环链表-Node does not take the lead to achieve the basic functions of the single round-robin list, such as the insertion deletion of nodes, as well as how to construct a single cycle of the first node list
c-hash
- C语言实现的哈希表算法,比链表的查询更快,在大量节点管理时很实用。-C-implemented hash table algorithm, faster than the query list, in the management of a large number of nodes is very useful.
lianbiao
- 链表的基本操作,用C语言实现,经过调试可以运行-List of basic operation, using C language, after commissioning can run
mutex-lock
- 多线程编程-互斥锁 由于线程的清量性,在搜索引擎构建中被广泛使用.线程的实现有多种方式,譬如互斥锁,条件变量,读写锁等.其中互斥锁最为简单,读写锁也与互斥锁类似.在LInux下简单实现一个链表,链表的插入和删除,以及整个链表的析构要考虑多线程的同步-Multi-threaded programming- Mutex clearance due to the amount of threads in the search engines are widely used to build. Th
dongtailianbiao
- 可实现对动态链表的基本功能包括增加元素、删除元素、插入元素等操作,让你明白动态链表的用法。-Can realize the basic functions of the dynamic list include increasing the elements, remove elements, inserting elements and other operations, so that you understand the usage of dynamically linked.
C_link
- 用C语言实现通用链表的功能 有增 删 改 查的功能函数-Is C write link
linklist
- 数据结构 链表的实现 动态链可以进行删除 插入等操作-Data structure linked list of dynamic chains can be removed into other operations
1
- 实现用链表的创建,环形链表的实现,单链表的实现,链表初始化。 -the using of link
list_3013
- 通用链表的实现方法,很容易由此扩展实现其他的类型的链表-Implementation method of general linked lists, it is easy to extend to implement other type of list
lianbiao
- 循环链表的实现,主要有三个文件,实在了一系列的循环链表的实现。-Circular linked list implementation
linklist
- 链表的实现,使用c++语言,类模板,包括链表的各种操作。-the code of linklist
link
- 经典的数据经结构算法,包括各种链表的实现方法和队列及树的实现。-The classic data structure algorithms, implementation method and queue and tree including all list.
llist_queue
- 链表的实现封装。刚学者,还望广大大婶门提出宝贵的意见和建议-Linked list implementation package. Just academics, but also hope the majority of Aunt door for their valuable comments and suggestions
dif-link
- 异质链表的实现,包括数据的增删改查的所有代码,已经经过编译实现-the differt link code
11
- 编程实现如何创建含有n个结点的单向循环链表(programing to realize creating single linklist with n node)