-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathShortestWaysDialog.cpp
80 lines (67 loc) · 1.95 KB
/
ShortestWaysDialog.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#include "ShortestWaysDialog.h"
#include <algoritmic_windows/AllPathsForm.h>
#include <algoritmic_windows/SingleSourcePathsForm.h>
ShortestWaysDialog::ShortestWaysDialog
(Graph *graph, QWidget *parent) :
QDialog(parent)
{
setupUi(this); // Настраиваем интерфейс
this->graph = graph;
/* Настройки размеров */
resize(100,100);
}
ShortestWaysDialog::~ShortestWaysDialog()
{
}
void ShortestWaysDialog::on_DijkstraButton_clicked()
{
close();
SingleSourcePathsForm *f = new SingleSourcePathsForm
(graph, SingleSourcePathsForm::Dijkstra);
f->show();
}
void ShortestWaysDialog::on_FloydWarshallButton_clicked()
{
close();
AllPathsForm *f = new AllPathsForm
(graph, AllPathsForm::FloydWarshall);
f->show();
}
void ShortestWaysDialog::on_BellmanFordButton_clicked()
{
close();
SingleSourcePathsForm *f = new SingleSourcePathsForm
(graph, SingleSourcePathsForm::BellmanFord);
f->show();
}
void ShortestWaysDialog::on_JohnsonButton_clicked()
{
close();
AllPathsForm *f = new AllPathsForm
(graph, AllPathsForm::Johnsohn);
f->show();
}
void ShortestWaysDialog::on_planarityButton_clicked()
{
QLabel *label = new QLabel();
layout()->addWidget(label);
if (graph->isPlanar()) {
label->setText("Граф планарний.");
} else {
label->setText("Граф непланарний.");
}
QString str = "Кольори для розфарбування: ";
for (int i = 0; i < graph->vertexCount(); i++) {
str += QString("\n") + QString::number(i + 1) + QString(": ") +
QString::number(graph->colors().value(i) + 1);
}
QLabel *colors = new QLabel(str);
layout()->addWidget(colors);
}
void ShortestWaysDialog::on_DantzigButton_clicked()
{
close();
AllPathsForm *f = new AllPathsForm
(graph, AllPathsForm::Dantzig);
f->show();
}