随笔分类 -  c++

线性表(顺序表的创建)
摘要:// orderList.cpp : 定义控制台应用程序的入口点。// #include "stdafx.h"#include "stdlib.h"#define LIST_INIT_SIZE 100 //线性表存储空间的初始分配量#define LISTINCREMENT 10 //线性表存储空间 阅读全文
posted @ 2017-09-12 19:44 paulversion 阅读(791) 评论(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 阅读(2169) 评论(0) 推荐(0)