摘要: #include using namespa... 阅读全文
posted @ 2016-05-11 23:55 岳麓丹枫 阅读(95) 评论(0) 推荐(0)
摘要: #include using namespace std;const int N = 10;typedef int ELEMTYPE;typedef struct Node{ ELEMTYPE data; Node *next;}LNode,*LinkL... 阅读全文
posted @ 2016-05-11 23:54 岳麓丹枫 阅读(173) 评论(0) 推荐(0)
摘要: #include using namespace std;const int N = 10;typedef int ELEMTYPE;typedef struct Node{ ELEMTYPE data; struct Node * next;}LNode;typede... 阅读全文
posted @ 2016-05-11 23:29 岳麓丹枫 阅读(192) 评论(0) 推荐(0)
摘要: #include using namespa... 阅读全文
posted @ 2016-05-11 23:29 岳麓丹枫 阅读(119) 评论(0) 推荐(0)
摘要: /* 功能:栈的链表实现 ... 阅读全文
posted @ 2016-05-11 20:41 岳麓丹枫 阅读(110) 评论(0) 推荐(0)
摘要: /* 功能:栈的链表实现 Author:lxm Date: 20160511*/#include #include #define ELEMTYPE int#define STACK_EMPTY -9999#define N 10typedef struc... 阅读全文
posted @ 2016-05-11 20:40 岳麓丹枫 阅读(159) 评论(0) 推荐(0)
摘要: “`#include #define MAX... 阅读全文
posted @ 2016-05-11 19:48 岳麓丹枫 阅读(114) 评论(0) 推荐(0)
摘要: “`#include #define MAXSIZE 10001#define ELEMTYPE int#define STACK_EMPTY -9999#define N 10typedef struct stack{ ELEMTYPE data[MAXSIZE]; ... 阅读全文
posted @ 2016-05-11 19:48 岳麓丹枫 阅读(146) 评论(0) 推荐(0)
摘要: # 显示文件大小`ls -lh`#显示目录大小du -sh```$ du -sh /usr/* 286M /usr/bin 124K /usr/games 20M /usr/include 1.6G /usr/lib 52M /usr/local 36M /usr/sbin 1.7G /usr/share 103M /usr/src```以... 阅读全文
posted @ 2016-05-11 18:58 岳麓丹枫 阅读(625) 评论(0) 推荐(0)
摘要: #list#break #delete #run#continue#finish#quit#next#step#print#watch l b 10; b add; b 10 if x>1#wi 以简单图形方式调试来自为知笔记(Wiz) 阅读全文
posted @ 2016-05-11 18:43 岳麓丹枫 阅读(114) 评论(0) 推荐(0)
摘要: ******来自为知笔记(Wiz) 阅读全文
posted @ 2016-05-11 18:43 岳麓丹枫 阅读(102) 评论(0) 推荐(0)
摘要: #include #define MAXSI... 阅读全文
posted @ 2016-05-11 18:20 岳麓丹枫 阅读(117) 评论(0) 推荐(0)
摘要: #include #define MAXSIZE 101#define ELEMTYPE int#define QUEUE_EMPTY -10000typedef struct queue{ ELEMTYPE data[MAXSIZE]; int head; in... 阅读全文
posted @ 2016-05-11 18:19 岳麓丹枫 阅读(158) 评论(0) 推荐(0)