【数据结构】抽象数据类型Triplet的表示和实现

三元组的C / C++实现代码
#include
using namespace std;

//函数结果状态代码
#define TRUE 1
#define FALSE 0
#define OK 1
#define ERROR 0
#define INFEASIBLE -1
#define OVERFLOW -2

typedef int Status;
typedef float ElemType;
typedef ElemType *Triplet;

//函数原型
Status InitTriplet(Triplet &T,ElemType v1,ElemType v2,ElemType v3);
Status DestroyTriplet(Triplet &T);
Status Get(Triplet T,int i,ElemType &e);
Status Put(Triplet &T,int i,ElemType e);
Sta

【数据结构】抽象数据类型Triplet的表示和实现最先出现在Python成神之路

版权声明:
作者:倾城
链接:https://www.techfm.club/p/17511.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>