心心程序博客

眼过千遍不如手过一遍! 书看千行不如手敲一行! 手敲千行不如单步一行! 单步源代码千行不如单步对应汇编一行!

导航

2012年4月24日

小程序引发的深层思考

摘要: #include<stdio.h>#include<stdlib.h>#include<malloc.h>/* * 功能:演示双向链表 * 作者:虾米 * *//*定义双向链表的存储结构*/typedef struct du_node{ int num; struct du_node *prior; struct du_node *next;}DU_NODE, *du_linklist;/*1. 创建链表*/DU_NODE *create(void){ char flag = 'Y'; printf("======Create li 阅读全文

posted @ 2012-04-24 21:40 心心程序博客 阅读(236) 评论(0) 推荐(0) 编辑