Description The Kingdom of Kremland is a tree (a connected undirected graph without cycles) consisting of $n$ vertices. Each vertex $i$ has its own va ...
分类:
其他好文 时间:
2019-04-22 20:57:58
阅读次数:
205
1.graph类 #ifndef GRAPH_H #define GRAPH_H // 类Graph的声明 class Graph { public: Graph(char ch, int n); // 带有参数的构造函数 void draw(); // 绘制图形 private: char sym ...
分类:
编程语言 时间:
2019-04-22 18:16:22
阅读次数:
156
Part 2 #ifndef GRAPH_H #define GRAPH_H class Graph { public: Graph(char ch, int n); void draw(); private: char symbol; int size; }; #endif #include "g ...
分类:
编程语言 时间:
2019-04-22 00:42:49
阅读次数:
154
graph项目: graph.h #ifndef GRAPH_H #define GRAPH_H class Graph { public: Graph(char ch,int n); void draw(); private: char symbol; int size; }; #endif gr ...
分类:
其他好文 时间:
2019-04-21 17:30:37
阅读次数:
135
// 类graph的实现 #include "graph.h" #include <iostream> using namespace std; // 带参数的构造函数的实现 Graph::Graph(char ch, int n): symbol(ch), size(n) { } // 成员函数d ...
分类:
其他好文 时间:
2019-04-21 17:23:12
阅读次数:
105
part2 graph.h #ifndef GRAPH_H#define GRAPH_H// 类Graph的声明 class Graph { public: Graph(char ch, int n); // 带有参数的构造函数 void draw(); // 绘制图形 private: char ...
分类:
编程语言 时间:
2019-04-21 15:56:44
阅读次数:
129
1.基于已有信息,补足并扩充程序。 在graph文件夹里提供有三个文件: graph.h (类Graph的声明) graph.cpp (类Graph的实现) main.cpp (类Graph的测试: 定义Graph类对象,调用绘图接口绘制图形) 要求如下: 新建一个空项目,添加上述三个文件到项目中。 ...
分类:
其他好文 时间:
2019-04-21 15:54:55
阅读次数:
158
part 2 #include <iostream> #include "graph.h" using namespace std; int main() { Graph graph1('*',5); graph1.draw(); system("pause"); system("cls"); Gr ...
分类:
其他好文 时间:
2019-04-21 14:27:29
阅读次数:
111
Part2 绘制图形 #include <iostream> #include "graph.h" using namespace std; int main() { Graph graph1('*',5); graph1.draw(); system("pause"); system("cls") ...
分类:
其他好文 时间:
2019-04-21 10:15:23
阅读次数:
131
Part2 基于已有信息,补足并扩充程序。 在graph文件夹里提供有三个文件: graph.h (类Graph的声明) graph.cpp (类Graph的实现) main.cpp (类Graph的测试: 定义Graph类对象,调用绘图接口绘制图形) 要求如下: 新建一个空项目,添加上述三个文件到 ...
分类:
其他好文 时间:
2019-04-21 09:28:26
阅读次数:
125