Andy 胡

导航

2017年6月16日

C语言 链表(Dev C++/分文件版)

摘要: 头文件:quechain.h 源文件:quechain.c 测试文件:testc.c 阅读全文

posted @ 2017-06-16 09:40 talkwah 阅读(737) 评论(0) 推荐(0) 编辑

C语言 链表(VS2012版)

摘要: // ConsoleApplication2.cpp : 定义控制台应用程序的入口点。 // #include "stdafx.h" #include #include #include struct Question{ int _id; struct Question* pre; struct Question* next; }; void chain_prin... 阅读全文

posted @ 2017-06-16 09:37 talkwah 阅读(276) 评论(0) 推荐(0) 编辑