双向链表
文章平均质量分 77
wildv
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
用双向链表对字符串进行排序
#include #include #include typedef struct string{ char *s; struct string *next; struct string *prior;}str;void PrintLink(str* node);str*原创 2011-07-11 10:46:18 · 707 阅读 · 0 评论 -
通用的双向链表,算是对前两种总结的过程,还不成熟请指教
链表的 头文件/* * Copyright (c) 2009-~ Du Jinhui * * This source code is released for free distribution under the terms of the * GNU General Publi原创 2011-07-11 10:53:57 · 415 阅读 · 0 评论 -
用双向链表对整形数据进行排序
#include"stdio.h"#include"stdlib.h"#include"conio.h"typedef struct node{ struct node *prev; struct node *next; int Data;}link,*pLink;pLink I原创 2011-07-11 10:42:12 · 508 阅读 · 0 评论
分享