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
数据结构(十四):广度优先搜索
root@ubuntu:/mnt/shared/appbox/graph#catbfs.h #ifndefBFS_H #defineBFS_H #include"graph.h" #include"
list.h
xiangpingli
·
2015-01-22 23:00
工大数据结构之实验指导之【一】单链表的操作
. │.cproject │.project │Makefile │ ├─include │
list.h
│ └─
小代码2016
·
2015-01-11 20:00
链表的实现
//
list.h
//《剑指Offer——名企面试官精讲典型编程题》代码 //著作权所有者:何海涛 structListNode { intm_nValue; ListNode*m_pNext; };
moses1213
·
2015-01-07 15:00
深入理解init
需要在使用链表操作的Makefile中,加入依赖库:LOCAL_STATIC_LIBRARIES:=libcutils相应的头文件在system/core/include/cutils/
list.h
实现的库文件在
wangkaiblog
·
2015-01-01 15:00
GIT Tips (To be continued)
gitls-tree-rmaster--name-only2.判断一个文件是否在git控制里:gitls-filesinclude/linux/list.h--error-unmatch include/linux/
list.h
CaspianSea
·
2014-12-24 01:00
linux 内核常用数据结构及算法——list(循环双向链表)
在linux内核中,应用到链表的地方非常多,所以在内核代码中,专门有一个
list.h
文件,定义了常用的链表操作,由于该文件的长度太长,这里就不将整个文件都粘出来了,如果没有下载代码,可以在如下网址阅读http
vah101
·
2014-11-18 12:00
例说Linux内核链表(二)
#include #include #include"
list.h
" structkool_list{ intto; structlist_headlist; intfrom; };//自定义欲链接的数据额结构
seek_0380
·
2014-10-14 23:00
linux
链表
例说Linux内核链表(一)
在include/linux/
list.h
文件中用C实现了一个好用的循环链表。
seek_0380
·
2014-10-13 23:00
linux
链表
嵌入式 linux下kernel代码中连通世界的list
链表的结构定义和相关函数均在include/linux/
list.h
中,下面就来全面的介绍这一链表的各种API。
skdkjxy
·
2014-09-30 15:00
链表排序实现
//Filename:
List.h
#ifndefLIST_H_INCLUDED #defineLIST_H_INCLUDED template structNode{ Tvalue; Node*link
zhangyalin1992
·
2014-09-27 16:00
排序
链表
单链表(List)的模板实现
//Filename:
List.h
#ifndefLIST_H #defineLIST_H template structLinkNode{//节点结构体定义 Tdata; LinkNode*link
zhangyalin1992
·
2014-09-21 19:00
单链表
线性表 - 双链表
List.h
/******************************************************************** purpose:带头结点的双链表 author:xianyun1230
xianyun2009
·
2014-09-12 20:00
线性表 - 模拟指针实现线性表
List.h
/******************************************************************** purpose:模拟指针实现线性表 author:
xianyun2009
·
2014-09-12 20:00
线性表 - 间接寻址实现线性表
List.h
/******************************************************************** purpose:间接寻址实现线性表 author:
xianyun2009
·
2014-09-12 20:00
线性表 - 公式化描述实现线性表
List.h
/******************************************************************** purpose:公式化描述实现线性表 author
xianyun2009
·
2014-09-12 19:00
线性表 - 带头结点的循环单链表
List.h
/******************************************************************** purpose:带头结点的循环单链表 author
xianyun2009
·
2014-09-12 19:00
Makefile 编译问题解惑
|--List | |--List.c | |--
List.h
| |--obj ` | `--Unitest | `--main.c |--Makefile |--Macro | `--DataMacroDefine.h1
citongke1
·
2014-08-31 20:00
Linux 内核中双向链表及
list.h
文件分析
list主要定义在内核源码部分的
list.h
文件中。
SUN20082567
·
2014-06-25 13:00
初识内核链表
源码的路径是include/linux/
list.h
我们先找几个简单的读一读吧。
u013490896
·
2014-06-19 16:00
链表
内核
oral_quiz->#Merge排序列表#
#include #include"Utilities/
List.h
" ListNode*MergeSortedLists(ListNode*pHead1,ListNode*pHead2){ if(pHead1
貉子
·
2014-06-14 10:00
list
merge
sorted
oral_quiz->#反转链表#
#include #include"Utilities/
List.h
" #include //怎么看怎么二,还用了仨指针,看了hht的,感觉自己写的是shit ListNode*MyReverseList
貉子
·
2014-06-14 10:00
链表
反转
contiki源码阅读之list
/core/lib/
list.h
).#include"lib/
list.h
" #defineNULL0 structlist{ structlist*next; };这就是核心结构体了,发现了吗?
u013490896
·
2014-06-05 14:00
链表contiki
Iperf源代码分析(八)
我在打开src文件夹时,大概浏览了一遍文件后,我突然发现了List.cpp和
List.h
文件。我一直在想,什么地方会用到List?
KiteRunner
·
2014-05-26 17:00
list_for_each 详解
而我们可以使用list_for_each(/include/linux/
list.h
)来依次遍历访问子进程:structtask_struct*task;
ONIM
·
2014-03-24 14:04
linux
linux通用hash链表
与我昨天写的《linux通用链表》类似,主要分析linux提供的头文件代码(linux/
list.h
)。
cizyzhang
·
2014-03-21 16:33
linux
散列表
hlist
c++ 变量的重复定义问题 [multiple definition of] 与模板类
问题1.编译出错 老规矩,四个文件node.h,node.cpp,
list.h
,list.cpp。结果在编译的时候(见makefile文件),总是出问题。查了一下,原因是模板类
shewa
·
2014-03-07 17:00
Linux内核中的通用链表
list.h
在windows下的移植实现
现在把Linux下的
list.h
取出来,在Windows平台上实现:我这里用的是Linux2.4版本的,2.6版本的其实都一样,下面是修改后的
list.h
源文件,注意几点:①注释掉了和Linux相关的字眼
dijkstar
·
2014-02-15 20:00
epoll
#include #include #include #include #include #include #include"thread.h" #include"
list.h
" #include #
cupidove
·
2014-02-06 10:00
memory managerment slab allocator(4)
#ifndef_LINUX_POISON_H#define_LINUX_POISON_H/**********include/linux/
list.h
**********//* *Architecturesmightwanttomovethepoisonpointeroffset
u011279649
·
2014-01-14 09:00
C.Interface.And.Implementations—list(单链表)的实现
======================
list.h
=========================#ifndefLIST_INCLUDED #defineLIST_INCLUDED #defineTList_T
u013011270
·
2014-01-09 14:00
c
list
单链表
linux 内核链表解析2
#include #include "
list.h
" struct person { int age; int weight; struct list_head
hanchaoman
·
2013-12-19 17:00
linux 内核链表解析1
前言: 在linux 源代码中有个头文件为
list.h
。
hanchaoman
·
2013-12-19 17:00
Hash表——The Hash table
#include#include#include#include"
list.h
"#define NAMESIZE24#defineHASHSIZE256typedefLISTHASH;typedefstructstuinfo
u011349664
·
2013-10-08 22:00
linux
struct
hash
C语言
structure
liststack——链表栈(procedure)
#include#include#include#include"
list.h
"#include"stack.h"#define NAMESIZE 24typedefstructstuinfo{ intid
u011349664
·
2013-10-07 17:00
linux
链表
struct
C语言
栈
Take the lead in the bidirectional circular linked list (variable-length structure)
Taketheleadinthebidirectionalcircularlinkedlist(variable-lengthstructure)#include#include#include#include"
list.h
u011349664
·
2013-10-06 23:00
c
数据
C语言
结构
structure
Lead the bidirectional circular linked list——双向循环链表
//leadthebidirectionalcircularlinklist#include#include#include#include"
list.h
"#define NAMESIZE24typedefstructstuinfo
u011349664
·
2013-10-05 21:00
c
linux
链表
struct
C语言
单链表——The headless singly linked list
#include#include#include"
list.h
"intmain(){ inti; DATAx; LISThead=NULL; head=ListCreate(); if(NULL==head
u011349664
·
2013-10-05 12:00
c
linux
struct
C语言
单链表
linux内核链表分析
linux内核在linux/
list.h
文件中定义了内核通用链表list_head类型基本结构:/*
hongkangwl
·
2013-09-29 17:00
【内核】内核链表使用说明,
list.h
注释
list_entry定义/** *list_entry-getthestructforthisentry *@ptr:the&structlist_headpointer. *@type:thetypeofthestructthisisembeddedin. *@member:thenameofthelist_structwithinthestruct. */ #definelist_
·
2013-07-30 12:00
list
linux 2.4内核中双向链表的实现/include/linux/
list.h
概述:在linux2.4内核中,于平台无关头文件/include/linux主要用于实现linux内核中的双线链表,对于很多内核中的功能都起到了很好的支撑作用,而且只有100多行,本文主要为你讲解这些函数的实现。 先浏览代码: 1#ifndef_LINUX_LIST_H 2#define_LINUX_LIST_H 3 4#ifdef__KERNEL__ 5 6/* 7*Simpledou
trochiluses
·
2013-07-16 19:00
双向链表
linux2.4内核
list linux
作者:清林,博客名:飞空静渡 前言: 在linux 源代码中有个头文件为
list.h
。
weed_hz
·
2013-07-04 15:00
linux的list常用函数用法速查及应用实例
linux中大量使用了双向链表操作,它们的源码实现在源码目录的/kernel/include/linux/
list.h
文件中,里边不仅包括普通双向链表的操作,还有hash链表操作。
u010246947
·
2013-06-25 15:00
linux
list
linux中C语言实现双向循环链表
包含两个文件,
list.h
是双向循环链表实现函数,test.c是其测试代码,有一定的参考价值! list.h#include#
weiqing1981127
·
2013-05-21 16:00
《大话数据结构》读书笔记系列(三)---- 线性表
下面是针对这种结构的插入删除方法:#filename:
list.h
#defineMAXSIZE
wddqing
·
2013-05-05 15:00
数据结构
线性表
QT 编译错误 multiple definition of
解决方式: 有关文档说 清除所有编译生成的文件;包括makefile,*
list.h
等。 我删除了:编译生成的问件(注意
mrjy1475726263
·
2013-03-29 22:00
玩转c链表 链表模板
list.h
转自点击打开链接代码 #ifndef__C_LIST_H #define__C_LIST_H typedefunsignedcharu8; typedefunsignedshortu16; typedefunsignedintu32; typedefunsignedlongsize_t; #defineoffsetof(TYPE,MEMBER)((size_t)&((TYPE*)0)->ME
yxnyxnyxnyxnyxn
·
2013-03-14 08:00
浅谈
list.h
头文件之双向循环链表
这两天看了下/usr/src/linux/
list.h
文件,感受颇多,里面主要讲了两种链表:双向循环链表和哈希链表,以及他们的一些基本的操作!
eager7
·
2013-01-06 17:04
linux
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
上一页
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
其他