上一页 1 ··· 38 39 40 41 42
摘要: #include using namespace std;#define MAX 100typedef struct staticlist{ int data; int next;}STATIC_LI... 阅读全文
posted @ 2017-03-02 10:49 sowhat1412 阅读(58) 评论(0) 推荐(0) 编辑
摘要: #include using namespace std;typedef struct listnode{ int data; struct listnode *next;}LIST_NODE;typ... 阅读全文
posted @ 2017-03-02 10:47 sowhat1412 阅读(40) 评论(0) 推荐(0) 编辑
摘要: #include using namespace std;#define MAX 4typedef struct queuearr{ int arr[MAX]; int cap; int siz... 阅读全文
posted @ 2017-03-02 10:40 sowhat1412 阅读(67) 评论(0) 推荐(0) 编辑
摘要: #include #include using namespace std;typedef struct node{ int data; struct node *next;}NODE;typedef... 阅读全文
posted @ 2017-03-02 10:19 sowhat1412 阅读(72) 评论(0) 推荐(0) 编辑
摘要: #include using namespace std;#include #define MAX 5typedef struct sharelist{ int arr[MAX]; int top; ... 阅读全文
posted @ 2017-03-02 09:36 sowhat1412 阅读(68) 评论(0) 推荐(0) 编辑
摘要: #include using namespace std;typedef struct listnode{ int data; struct listnode *next;}LIST_NODE;typ... 阅读全文
posted @ 2017-03-02 09:25 sowhat1412 阅读(62) 评论(0) 推荐(0) 编辑
摘要: #include using namespace std;typedef struct stackArr{ int *arr; int cap; int top;}STACK;STACK* cr... 阅读全文
posted @ 2017-03-02 09:22 sowhat1412 阅读(59) 评论(0) 推荐(0) 编辑
摘要: // http://www.cnblogs.com/c-cloud/p/3224788.html#include #include using namespace std;void makeNext(cons... 阅读全文
posted @ 2017-03-02 09:19 sowhat1412 阅读(71) 评论(0) 推荐(0) 编辑
摘要: #include #include #include using namespace std;int MyStrlen(char* a) //strlen(a){ int i=0; while(a[... 阅读全文
posted @ 2017-03-02 09:12 sowhat1412 阅读(88) 评论(0) 推荐(0) 编辑
摘要: #if 1#include using namespace std;void move(int n,char A, char B, char C){ if(1==n) { cout""... 阅读全文
posted @ 2017-03-01 20:10 sowhat1412 阅读(103) 评论(0) 推荐(0) 编辑
上一页 1 ··· 38 39 40 41 42