数据结构 课程 编程练习题,C语言构造单链表

日期:2013-05-18 01:19:37 人气:2

数据结构 课程 编程练习题,C语言构造单链表

#include #include #include typedef unsigned int uint;#if defined(__cplusplus)#define new_type(_T) (_T*)malloc(sizeof(_T));#else#define new_type(_T) malloc(sizeof(_T));#endiftypedef struct node { int val; node* next;} node;// 构建链表,返回头结点,并创建数目
    A+
热门评论