E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
list.h
Linux Kernel中list解读
在~/include/linux/
list.h
中,就定义了双向链表和常用的func
cawang
·
2012-12-31 14:00
05list-hlist
list.h
structlist_head{ structlist_head*prev; structlist_head*next; }; #defineLIST_HEAD(head)structlist_headhead
chinaunixj
·
2012-11-14 15:00
04hashtab-josephus
list.h
structlist_head{ structlist_head*prev; structlist_head*next; }; #defineLIST_HEAD(head)structlist_headhead
chinaunixj
·
2012-11-14 14:00
03dlist-kernel_list
list.h
structlist_head{ structlist_head*prev; structlist_head*next; }; #defineLIST_HEAD(head)structlist_headhead
chinaunixj
·
2012-11-13 16:00
linux内核链表
链表数据结构的定义很简单(节选自[include/linux/
list.h
],以下所有代码,除非加以
linxi_hnh
·
2012-10-31 18:00
linux 内核 hash table 的使用
asof2.6.38)doesnotincludeagenerichashtableimplementation,butdoesincludesomepieces:hlist_*/HLIST_* in
list.h
fgh1987168
·
2012-10-22 11:32
linux
kernel
hash
读
list.h
有感
看完收获很大,之前发起过一次,没静下心来,最终导致没看懂。这次沉下心来,一鼓作气,配合自己写的demo例子,整理出一个简化版的通用链表概念。传统链表结构,如下所示:typedefstructtrain{ char[32]load;//这一节火车装载货物的名称,例如:cotton,coal-mine intnumber;//这一节火车的编号 structtrain*next; }train;这种传统
Michael_Yuan
·
2012-10-17 18:00
链表
内核
list.h
intrusive list
/****************************************************************************** * *
List.h
* * *ByPatrickWyatt
hertz2007
·
2012-09-21 23:00
算法导论 10.2-5 环形链表实现字典操作INSERT、DELETE、SEARCH
一、题目用环形链表来实现字典操作INSERT、DELETE、SEARCH,并给出它们的运行时间二、代码//
List.h
#include usingnamespacestd; //链表结点 structnode
mishifangxiangdefeng
·
2012-09-18 19:00
linux内核部件--通用双向链表list
链表的结构定义和相关函数均在include/linux/
list.h
中,下面就来全面的介绍这一链表的各种API。
bingqingsuimeng
·
2012-08-31 14:00
linux
list
struct
api
each
linux内核
Linux内核链表基础
1、内核链表的定义在include/linux/
list.h
struct list_head { struct list_head *next, *prev; }; 容易看出,Linux内核链表为双向链表
xitong
·
2012-08-28 21:00
linux
Linux内核部件分析<1>连通世界的list
链表的结构定义和相关函数均在include/linux/
list.h
中,下面就来全面的介绍这一链表的各种API。
jeffreyst
·
2012-08-27 17:00
linux
list
struct
api
each
linux内核
链表基本操作
main.c#include #include #include"
list.h
" main(void) { intmin,max; charitem_choice; list_t*head
yangjin_unique
·
2012-08-02 20:00
linux内核部件分析(一)——连通世界的list
链表的结构定义和相关函数均在include/linux/
list.h
中,下面就来全面的介绍这一链表的各种API。[cpp]viewplaincopyprint?
tronteng
·
2012-07-10 16:00
Linux内核第八记
这些链表大多数采用了[include/linux/
list.h
]中实现的一套精彩的链表数据结构。
hubi0952
·
2012-07-06 00:00
数据结构
linux
list
struct
linux内核
Linux Kernel中list解读
在~/include/linux/
list.h
中,就定义了双向链表和常用的function. 链表头如下:structlist_head{
gjsisi
·
2012-07-04 17:00
【高质量代码实践】【链表】链表的建立,查找,删除,插入和输出
use.c *文件标识:见配置管理计划书 *摘要:创建链表,查找结点,删除结点,插入结点,输出链表 *当前版本:1.1 *作者:黄路 *完成日期:2012年6月30日*/ #include"
list.h
To_dreams
·
2012-06-29 11:00
c
list
struct
配置管理
null
编译器
单链表的简单实践
1.算法描述数据结构与算法分析C++版:3.11实现一个有序单链表,要求能返回链表大小,打印链表,检测x是否在链表(在则删除,否则添加) 2.实现
List.h
#ifndefLIST_H #defineLIST_H
hao3100590
·
2012-06-27 09:00
链表
指针
插入
单链表模板类
/* *单链表模板类
List.h
*/ #ifndef_LIST_H_ #define_LIST_H_ #include usingnamespacestd; template classList
furney
·
2012-06-12 20:00
linux内核学习中-- 史上最全 linux通用链表“
list.h
”详解
最近几天在学习linux内核,接触到“
list.h
”文件,学习了几天,在这里做一下总结。也在网上学习了很多前人的工作。好像大家的工作都比较零散,每个人都是仅仅解释了某几个函数。
ggxxkkll
·
2012-05-22 17:00
数据结构
linux
struct
list
each
linux内核
linux内核学习中--“
list.h
”文件中 hlist所有函数与宏定义的详解
刚刚把hlist有关的函数和宏定义都过了一遍,在此做了一下整理。希望对大家以后学习linux有用,也欢迎大家来拍砖 /*Linux链表设计者(认为双头(next、prev)的双链表对于HASH表来说"过于浪费",因而另行设计了一套用于HASH表应用的hlist数据结构--单指针表头双循环链表,hlist的表头仅有一个指向首节点的指针,而没有指向尾节点的指针,这样在可能是海量的HASH表中存储的表
ggxxkkll
·
2012-05-22 17:00
linux内核学习中--"
list.h
" del move splice 函数理解
第三篇博客,主要是针对删除,移动,合并函数的理解,很简单的,相信大家一看就明白了。staticinlinevoid__list_del(structlist_head*prev,structlist_head*next)//删除结点。删除链表中prev与next之间的元素 { next->prev=prev; prev->next=next; } staticinlinevoidli
ggxxkkll
·
2012-05-22 14:00
JOIN
linux
struct
list
测试
linux内核
linux内核学习中--“
list.h
”中 插入add函数 总结
第一 声明和初始化,我在这里不详细说明了,请看我上一篇博文,在这里贴出相应的代码:#ifndef_LINUX_LIST_H #define_LINUX_LIST_H #defineoffsetof1(TYPE,MEMBER)((size_t)&((TYPE*)0)->MEMBER) #definecontainer_of(ptr,type,member)({\ consttypeo
ggxxkkll
·
2012-05-22 14:00
一些结构
list_head 结构在
list.h
中实现,它是一个Simpledoublylinkedlist,我们先看一下它的优美结构:structlist_head{structlist_head*next,
alada007
·
2012-05-22 10:00
list
struct
File
null
Linux Kernel中list解读
在~/include/linux/
list.h
中,就定义了双向链表和常用的function. 链表头如下:structlist_head{
chinaunixj
·
2012-04-18 14:00
linux
list
struct
report
each
linux内核
GeekOS学习(8)链表操作宏
/include/geekos/
list.h
/* *Genericlistdatatype *Copyright(c)2001,2004DavidH.Hovemeyer *$Re
wu5795175
·
2012-04-16 19:00
使用linux 内核中代码之--list
修改了一下linux内核3.3中的
list.h
,可以在自己的程序中直接使用;list 直接上代码比较实在。
韩工
·
2012-04-16 10:00
linux
list
Linux内核通用链表
list.h>阅读
转自:http://wenku.baidu.com/view/0a8a5d126edb6f1aff001fbd.htmlLinux内核通用链表阅读2008-10-2322:43#ifndef_LINUX_LIST_H#define_LINUX_LIST_H//宏定义,不做过多解释,就是检查是否包含了linux/list.h#ifdef__KERNEL__#include#include#inclu
yapingmcu
·
2012-04-09 17:00
Linux内核链表
Linux内核链表定义在include/linux/
list.h
文件中链表结构定义structlist_head{ structlist_head*next,*prev;};Linux内核链表它是一个双向循环链表
Tommy_wxie
·
2012-04-04 11:00
list
struct
each
linux内核
使用linux 内核中代码之--list
修改了一下linux内核3.3中的
list.h
,可以在自己的程序中直接使用;list 直接上代码比较实在。
hpccn
·
2012-04-01 19:00
自己实现了STL里的list部分功能
代码如下:
List.h
文件:最近创建了自己的讨论群希望大家能一起加入群号:45811732#ifndefLIST#defineLIST#include"std
游戏的天空
·
2012-03-24 06:00
Linux Kernel中list解读
在~/include/linux/
list.h
中,就定义了双向链表和常用的function. 链表头如下:structlist_head{
hansel
·
2012-03-22 23:00
linux
list.h
实例
) #defineINLINE__inline #else #defineINLINEinline #endif /*ThisfileisfromLinuxKernel(include/linux/
list.h
likun_tech
·
2012-03-22 21:00
简单的双向循环链表实现的队列
/*list.c 双向循环链表的演示 *先进先出的队列 *期望优化 *张华南 * 2012.03.17 */#include#include#include"
list.h
"list listinit(
张华南
·
2012-03-17 17:00
深入浅出linux内核源代码之双向链表list_head(上)
作者:清林,博客名:飞空静渡 前言: 在linux 源代码中有个头文件为
list.h
。很多linux 下的源代码都会使用这个头文件,它里面定义了一个结构, 以及定义
lishenglong666
·
2012-03-08 19:00
linux
linux
list
struct
c/c++
insert
each
linux内核
《算法导论》第10章 基本数据结构 (2)链表
源文件
list.h
:链表的接口,定义链表和结点的类型,以及链表支持的操作。
txf2004
·
2012-03-05 22:00
数据结构
《算法导论》第10章 基本数据结构 (2)链表
源文件
list.h
:链表的接口,定义链表和结点的类型,以及链表支持的操作。
dc_726
·
2012-03-05 22:00
数据结构
算法
list
struct
null
insert
内核链表
Linux内核链表定义在include/linux/
list.h
文件中链表结构定义structlist_head{ structlist_head*next,*prev;};Linux内核链表它是一个双向循环链表
linux_wgl
·
2012-02-29 22:00
转载一个无依赖的linux的
list.h
头文件
. * *Hereisarecipetocooklist.hforuserspaceprogram * *1.copylist.hfromlinux/include/
list.h
*2.r
ani_di
·
2012-02-16 11:00
linux
struct
list
delete
each
structure
《C语言接口与实现》实验——链表(List_T)
实验程序如下:#include #include #include"include/
list.h
" #pragmacomment(lib,"libcii.lib") //打印函
dijkstar
·
2012-01-30 11:00
c
list
null
文档
语言
FP
kernel 中链表的简单应用
直接上代码:我这是从
list.h
中摘出来的,编译测试通过!
cyq1028
·
2011-12-30 17:00
struct
list
gcc
delete
insert
each
批处理,循环写入文件
记录下即是,我想通过echo循环写入文件名,进入一个.h文件原来这么写echo...Deletethejavafiles dir/B/ON%PROJ_DIR%\src\header\*.h>#
list.h
DevFun
·
2011-12-27 14:00
java
header
delete
Path
Linux中关于链表的遍历
Linux中反链表的操作是用的比较多的,其中include/linux/
list.h
是一个很关键的文件,下面记录几个很重要的链表操作宏: list_for_each_entry(pos,head,member
中华大吉
·
2011-12-23 17:00
Linux内核链表
Linux内核链表定义在include/linux/
list.h
文件中链表结构定义structlist_head{ structlist_head*next,*prev;};Linux内核链表它是一个双向循环链表
mcgrady_tracy
·
2011-12-14 23:00
C语言数据结构实战(一)顺序表的插入与删除
今天学习了思成老师的数据结构实战教程 写了一个顺序表 插入和删除的操作 把源码共享给大家 一共包括list.c stu.h main.c
list.h
.h文件是头文件 需要引入 具体的功能我都已经在代码中写明了
qinweiping
·
2011-12-13 21:00
数据结构
C语言数据结构实战(一)顺序表的插入与删除
阅读更多今天学习了思成老师的数据结构实战教程写了一个顺序表插入和删除的操作把源码共享给大家一共包括list.cstu.hmain.clist.h.h文件是头文件需要引入具体的功能我都已经在代码中写明了
list.h
qinweiping
·
2011-12-13 21:00
头文件包含时路径问题
d:\programfile\vc98\include\
list.h
(37):errorC2146:syntaxerror:missing';'beforeidentifier'Length'd:\programfile
shimachao
·
2011-12-01 00:00
c
File
include
winapi
2个小时学会写makefile
本文只是介绍如何编写一个基本的Makefile,并不是一个非常完整的参考手册,其中很多类容都没有涉及到1.基本一个简单的Makefile,为了实际说明,我举我写的链表例子man.c,list.c,
list.h
mcgrady_tracy
·
2011-11-28 09:00
汇编
gcc
command
makefile
编译器
output
双向循环队列
在~/include/linux/
list.h
中,就定义了双向链表和常用的function.链表头如下:structlist_head{ structlist_head*next,*prev; };1.
yaroumlnh
·
2011-11-25 08:09
linux
function
记录
include
linked
Linux内核链表实现剖析
内核链表详细信息见include/linux/
list.h
。
zhangskd
·
2011-11-24 15:00
数据结构
linux
struct
list
each
linux内核
上一页
5
6
7
8
9
10
11
12
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他