forked from LeeDa16/DataStructure-Algorithm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmainwindow.cpp
63 lines (56 loc) · 1.68 KB
/
mainwindow.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include <fstream>
#include <QString>
#include <QInputDialog>
#include <QDesktopServices>
#include <QUrl>
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
connect(ui->pushButton,SIGNAL(clicked(bool)),this,SLOT(showShortestPath()));
connect(ui->pushButton_2,SIGNAL(clicked(bool)),this,SLOT(showMiniTree()));
connect(ui->pushButton_3,SIGNAL(clicked(bool)),this,SLOT(showBetweenness()));
connect(ui->pushButton_4,SIGNAL(clicked(bool)),this,SLOT(showCloseness()));
}
MainWindow::~MainWindow()
{
delete ui;
}
void MainWindow::showShortestPath()
{
int begin, end;
begin = QInputDialog::getInt(NULL,"请输入起点","请输入起点:");
end = QInputDialog::getInt(NULL,"请输入终点","请输入终点:");
graph.shortestPath(begin,end);
graph.showShortestPathGraph();
QDesktopServices::openUrl(QUrl::fromLocalFile("graph.html"));
}
void MainWindow::showMiniTree()
{
graph.showShortestTreeGraph();
QDesktopServices::openUrl(QUrl::fromLocalFile("graph.html"));
}
void MainWindow::showBetweenness()
{
graph.showBetweennessGraph();
QDesktopServices::openUrl(QUrl::fromLocalFile("graph.html"));
}
void MainWindow::showCloseness()
{
graph.showClosenessGraph();
QDesktopServices::openUrl(QUrl::fromLocalFile("graph.html"));
}
void MainWindow::run()
{
graph.floyd();
graph.centrality();
graph.prim();
ofstream fout("out.csv", ios::out);
graph.showCtrlty(fout);
fout.close();
fout.open("tree.txt",ios::out);
graph.showShortestTree(fout);
}