2014年3月24日

算法精解(C语言描述) 第5章 读书笔记

摘要: 第5章5.1 单链表/* -------------------------------- list.h -------------------------------- */#ifndef LIST_H#define LIST_H#include /* Define a structure for linked list elements.*/typedef struct ListElmt_ { void *data; struct ListElmt_ *next;} ListElmt;/* Define a structure for linked lists.*/ty... 阅读全文

posted @ 2014-03-24 22:47 whl-hl 阅读(356) 评论(0) 推荐(0) 编辑

导航