摘要:
#include using namespace std;#define MAX 100typedef struct staticlist{ int data; int next;}STATIC_LI... 阅读全文
posted @ 2017-03-02 10:49
sowhat1412
阅读(61)
评论(0)
推荐(0)
摘要:
#include using namespace std;typedef struct listnode{ int data; struct listnode *next;}LIST_NODE;typ... 阅读全文
posted @ 2017-03-02 10:47
sowhat1412
阅读(42)
评论(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
阅读(71)
评论(0)
推荐(0)
摘要:
#include #include using namespace std;typedef struct node{ int data; struct node *next;}NODE;typedef... 阅读全文
posted @ 2017-03-02 10:19
sowhat1412
阅读(73)
评论(0)
推荐(0)
摘要:
#include using namespace std;#include #define MAX 5typedef struct sharelist{ int arr[MAX]; int top; ... 阅读全文
posted @ 2017-03-02 09:36
sowhat1412
阅读(75)
评论(0)
推荐(0)
摘要:
#include using namespace std;typedef struct listnode{ int data; struct listnode *next;}LIST_NODE;typ... 阅读全文
posted @ 2017-03-02 09:25
sowhat1412
阅读(66)
评论(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
阅读(65)
评论(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
阅读(78)
评论(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
阅读(98)
评论(0)
推荐(0)

浙公网安备 33010602011771号