Must Be
发布时间:2016-04-26 16:11:58
点击(此处)折叠或打开#include <stdio.h>#include <stdlib.h>struct list_data { int data; struct list_data *next;};.........【阅读全文】
发布时间:2016-04-22 10:52:46
操作系统:ubuntu10.04前言: 在开发中,经常需要使用到链表,因此参考linux内核的链表的实现。一,源码点击(此处)折叠或打开#ifndef __LIST_H__#define __LIST_H__#ifdef __cplusplusextern "C" {#en.........【阅读全文】