MTSL/main.cpp
youspectrum 2afe10c1f7 Link_List file 改名为 List
List 更改成模板类
添加了 转换函数(重载)
添加了 单链 单体 单键 设计模式
2022-09-27 21:16:39 +08:00

12 lines
183 B
C++

#include <iostream>
#include "h/List.h"
#include "h/String.h"
#include "h/Faction.h"
int main() {
double f = *new Faction(7,5);
std::cout << f << std::endl;
return 0;
}