http://user.qzone.qq.com/810087456/infocenter

ymecho

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

2013年9月17日

摘要: #include "stdafx.h"#include "stdlib.h"#includeusing namespace std;typedef struct node{ int value; node * next;}* LNode ;int main(int argc, char* argv[]){ LNode Inputlist(); void OutPutList(const LNode head); LNode Converse(LNode head); LNode head =Inputlist(); OutPutList(head); . 阅读全文
posted @ 2013-09-17 20:49 ymecho 阅读(346) 评论(0) 推荐(0) 编辑