linux中C语言实现双向循环链表

版权所有,转载必须说明转自 http://my.csdn.net/weiqing1981127 

原创作者:南京邮电大学  通信与信息系统专业 研二 魏清

 

阅读linux2.6.32.2中双向循环链表的实现,借鉴其内核代码,在应用层实现双向循环链表的建立,插入,删除,以及遍历操作。包含两个文件,list.h是双向循环链表实现函数,test.c是其测试代码,有一定的参考价值!

 

list.h

#include <stdio.h>
#include <stdlib.h>


#define LIST_POISON1  ((void *) 0x00100100)
#define LIST_POISON2  ((void *) 0x00200200)

#define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)
#define container_of(ptr, type, member) ({   \
 const typeof(((type *)0)->member) * __mptr = (ptr); \
 (type *)((char *)__mptr - offsetof(type, member)); })
#define list_entry(ptr, type, member) \
 container_of(ptr, type, member)

static inline void prefetch(const void *addr)
{
 //__asm__("ldw 0(%0), %%r0" : : "r" (addr));  //just aimed at improving the speed of iterating the list
}

#define list_for_each_entry(pos, head, member)    \
 for (pos = list_entry((head)->next, typeof(*pos), member); \
      prefetch(pos->member.next), &pos->member != (head);  \
      pos = list_entry(pos->member.next, typeof(*pos), member))

struct list_head {
 struct list_head *next, *prev;
};

 

static inline void INIT_LIST_HEAD(struct list_head *list)
{
 list->next = list;
 list->prev = list;
}


static inline void __list_add(struct list_head *new,
         struct list_head *prev,
         struct list_head *next)
{
 next->prev = new;
 new->next = next;
 new->prev = prev;
 prev->next = new;
}
static inline void list_add(struct list_head *new, struct list_head *head)
{
 __list_add(new, head, head->next);
}


static inline void __list_del(struct list_head * prev, struct list_head * next)
{
 next->prev = prev;
 prev->next = next;
}
static inline void list_del(struct list_head *entry)
{
 __list_del(entry->prev, entry->next);
 entry->next = LIST_POISON1;
 entry->prev = LIST_POISON2;
}

static inline int list_empty(const struct list_head *head)
{
 return head->next == head;
}

 

test.c

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "list.h"

struct student{
 char *name;
 int age;
 struct list_head list;
};

int main()
{
 struct student a={"lili",10},b={"wang",11},c={"du",12};
 struct student *wq,*f;
 wq=(struct student *)malloc(sizeof(struct student));
 memset(wq,0,sizeof(struct student));
 INIT_LIST_HEAD(&wq->list);
 list_add(&a.list,&wq->list);
 list_add(&b.list,&wq->list);
 list_add(&c.list,&wq->list);
 //list_del(&c.list);
 
 f=(struct student *)malloc(sizeof(struct student));
 memset(f,0,sizeof(struct student));
 list_for_each_entry(f,&wq->list,list){
  printf("name:%-10s age:%d\n",f->name,f->age);
 }

free(wq);

wq=NULL;
 return 0;
}

 

 

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值