2017年9月21日
摘要: typestruct.h #define MAX_SIZE 1000 typedef struct { int data; int cur;}compont,SLinkLIist[MAX_SIZE]; //初始化一个空的静态链表void InitSpace_SL(SLinkLIist S); //从 阅读全文
posted @ 2017-09-21 18:25 paulversion 阅读(434) 评论(0) 推荐(0) 编辑
摘要: typeDefine.h 头文件 #define MAXSIZE 100 typedef struct { int data; int cur; }component,SLinkList[MAXSIZE];//SLinkList类型为1000长度的数组 //初始化静态链表void InitSpace 阅读全文
posted @ 2017-09-21 16:09 paulversion 阅读(1265) 评论(0) 推荐(0) 编辑
  2017年9月19日
摘要: function.h 头文件 typedef struct LNode { struct LNode *next; int data; }LNode,*LinkList;//*LinkList等价于typedef int* p;p为指向int类型的指针 typedef int Status; //初 阅读全文
posted @ 2017-09-19 17:17 paulversion 阅读(191) 评论(0) 推荐(0) 编辑
  2017年9月15日
摘要: #include "stdio.h"#include "stdlib.h"#include "function.h"void main(){ Sqlist L,L1,L2; InitList(&L); InitList(&L1); InitList(&L2); ListInsert(&L, 1, 3 阅读全文
posted @ 2017-09-15 20:01 paulversion 阅读(981) 评论(0) 推荐(0) 编辑
摘要: void main(){ Sqlist L,L1; InitList(&L); InitList(&L1); ListInsert(&L, 1, 2); ListInsert(&L, 2, 3); ListInsert(&L, 1, 1); ListInsert(&L1,1,1); ListInse 阅读全文
posted @ 2017-09-15 18:20 paulversion 阅读(775) 评论(0) 推荐(0) 编辑
摘要: #include "stdio.h"#include "stdlib.h"#define LIST_INIT_SIZE 100 //线性表存储空间的初始分配量#define LISTINCREMENT 10 //线性表存储空间的分配增量#define OK 1;#define ERROR 0; ty 阅读全文
posted @ 2017-09-15 16:05 paulversion 阅读(559) 评论(0) 推荐(0) 编辑
摘要: // Triplet.cpp : 定义控制台应用程序的入口点。//#include "stdio.h"#include "stdlib.h"#define OK 1#define ERROE 0 typedef int Status; typedef int *Triplet;//定义Triplet 阅读全文
posted @ 2017-09-15 16:03 paulversion 阅读(2972) 评论(0) 推荐(0) 编辑
  2017年9月12日
摘要: // orderList.cpp : 定义控制台应用程序的入口点。// #include "stdafx.h"#include "stdlib.h"#define LIST_INIT_SIZE 100 //线性表存储空间的初始分配量#define LISTINCREMENT 10 //线性表存储空间 阅读全文
posted @ 2017-09-12 19:44 paulversion 阅读(784) 评论(0) 推荐(0) 编辑
摘要: // Triplet.cpp : 定义控制台应用程序的入口点。// #include "stdafx.h"#include "stdlib.h"#define OK 1#define ERROE 0 typedef int Status; typedef int *Triplet;//定义Tripl 阅读全文
posted @ 2017-09-12 19:42 paulversion 阅读(2123) 评论(0) 推荐(0) 编辑
  2017年9月8日
摘要: /usr/local/redis/src/redis-cli -h 172.28.6.23 -p 6383 keys "virtual*" |xargs /usr/local/redis/src/redis-cli -h 172.28.6.23 -p 6383 del 阅读全文
posted @ 2017-09-08 14:08 paulversion 阅读(2293) 评论(0) 推荐(0) 编辑