自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

重回巅峰

初学者,菜鸟一枚

  • 博客(4)
  • 问答 (1)
  • 收藏
  • 关注

转载 单链表的循环

/*clist.h*/ #ifndef CLIST_H_INCLUDED #define CLIST_H_INCLUDED #include "stdlib.h" /*Define a struct for the circular list elements*/ typedef struct CListElmt_ {     void *data;     str

2015-05-20 21:53:22 323

转载 双链表的实现

/*dlist.h*/ #ifndef DLIST_H_INCLUDE #define DLIST_H_INCLUDE #include /*Define a structure for double-linked elements*/ typedef struct DListElmt_ {     void *data;     struct DListElmt

2015-05-19 23:01:08 263

转载 单链表的实现 来自算法精解-c语言描述

Recently, I have a lot  havrest while learning algorithm.Please point out the wrong.Do not ridicule.I am a noob. Two advantage  of linked list:one is efficient insert and remove,another is dynami

2015-05-18 22:23:31 436

转载 linux 常用命令大全

linux常用命令大全。保存备用。

2015-05-18 22:11:24 270

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除