摘要:
#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)
编辑
摘要:
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)
编辑
摘要:
#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)
编辑
摘要:
// 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)
编辑