-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmainwindow.cpp
194 lines (163 loc) · 7.54 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include "functions.h"
#include <time.h>
#include <QString>
#include <cstdlib>
#include <QMessageBox>
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
ui->progressBar->setValue(0);
}
MainWindow::~MainWindow()
{
delete ui;
}
void MainWindow::on_Executar_clicked()
{
QStringList dim = (ui->dimensoesV->text()).split(":");
tam_min = dim[0].toInt();
passo = dim[1].toInt();
tam_max = dim[2].toInt();
iter = (ui->n_iteracoes->text()).toInt();
if (!(ui->checkBubble->isChecked()) && !(ui->checkQuick->isChecked())){
QMessageBox::information(this, tr("Erro"), tr("Voce deve escolher algum tipo de busca!"));
}
if (ui->dimensoesV->text().isEmpty() || iter == 0){
QMessageBox::information(this, tr("Erro"), tr("Você deve fazer pelo menos uma iteração!"));
}
if (dim[0].isEmpty() || dim[1].isEmpty() || dim[2].isEmpty() || tam_max < tam_min){
QMessageBox::information(this, tr("Erro"), tr("As dimensões não estão corretas!"));
}
else{
int n_dados = ((tam_max-tam_min)/passo)+1, count;
QVector<double> x(n_dados), yBubble(n_dados), yQuick(n_dados), somaTBubble(n_dados), somaTQuick(n_dados);
QVector<double> yDpBubble(iter), yDpQuick(iter), DpBubble(n_dados), DpQuick(n_dados);
clock_t clock1, clock2, tTotal1, tTotal2;
int totalIter = n_dados*iter;
if(ui->checkBubble->isChecked() && (ui->checkQuick->isChecked()))
totalIter *= 2;
count = 0;
tTotal1 = clock();
for (int i = tam_min, j = 0; i<= tam_max; i+=passo, j++)
{
DpBubble[j] = 0;
DpQuick[j] = 0;
x[j] = i;
//xBubble = 0; yBubble = 0; xQuick = 0; yQuick = 0;
for(int it = 0; it < iter; it++)
{
vetor = new int[i];
criarVetor(i,vetor);
if(ui->checkBubble->isChecked()){
clock1 = clock();
bubbleSort(vetor, i);
clock2 = clock();
count++;
yBubble[j] += (double)(clock2-clock1)/(double)CLOCKS_PER_SEC; //Somatório para calcular a média
yDpBubble[it] = (double)(clock2-clock1)/(double)CLOCKS_PER_SEC; //Tempo em cada iteração para calcular D.p.
}
if(ui->checkQuick->isChecked()){
clock1 = clock();
qsort (vetor, i, sizeof(int), compare_ints);
clock2 = clock();
count++;
yQuick[j] += (double)(clock2-clock1)/(double)CLOCKS_PER_SEC; //Somatório para calcular a média
yDpQuick[it] = (double)(clock2-clock1)/(double)CLOCKS_PER_SEC; //Tempo em cada iteração para calcular D.p.
}
// count++;
ui->progressBar->setValue(count*100/(totalIter));
}
somaTBubble[j] = yBubble[j];
somaTQuick[j] = yQuick[j];
//Calculo da média
yBubble[j] /= iter;
yQuick[j] /= iter;
//Calculo desvio padrão = raizq(soma de todos os quadrados dos desvios dividida pelo numero de ocorrencias)
//desvio = valor - media;
for (int it = 0; it< iter; it++)
{
DpBubble[j] += (yDpBubble[it] - yBubble[j])*(yDpBubble[it] - yBubble[j]);
DpQuick[j] += (yDpQuick[it] - yQuick[j])*(yDpQuick[it] - yQuick[j]);
}
DpBubble[j] = sqrt(DpBubble[j]/iter);
DpQuick[j] = sqrt(DpQuick[j]/iter);
}
tTotal2 = clock();
ui->customPlot->clearGraphs();
ui->customPlot->legend->clearItems();
ui->customPlot->clearItems();
//Plotando o Gráfico do Bubble Sort
ui->customPlot->addGraph();
ui->customPlot->graph(0)->setErrorType(QCPGraph::etValue);
ui->customPlot->graph(0)->setErrorPen(QPen(Qt::blue));
ui->customPlot->graph(0)->setDataValueError(x, yBubble, DpBubble);
ui->customPlot->graph(0)->setPen(QPen(Qt::blue));
ui->customPlot->graph(0)->setScatterStyle(QCPScatterStyle(QCPScatterStyle::ssDisc, 3));
ui->customPlot->graph(0)->setName("Bubble Sort");
//Plotando o Gráfico do Quick Sort
ui->customPlot->addGraph();
ui->customPlot->graph(1)->setErrorType(QCPGraph::etValue);
ui->customPlot->graph(1)->setErrorPen(QPen(Qt::red));
ui->customPlot->graph(1)->setDataValueError(x, yQuick, DpQuick);
ui->customPlot->graph(1)->setPen(QPen(Qt::red));
ui->customPlot->graph(1)->setScatterStyle(QCPScatterStyle(QCPScatterStyle::ssDisc, 3));
ui->customPlot->graph(1)->setName("Quick Sort");
//Porcentagen
QString porcentagem;
double value, tempoTotal = (double)(tTotal2 - tTotal1)/(double)CLOCKS_PER_SEC;
/* //Tempo Total
QCPItemText *textLabel = new QCPItemText(ui->customPlot);
ui->customPlot->addItem(textLabel);
textLabel->setPositionAlignment(Qt::AlignTop |Qt::AlignLeading);
textLabel->position->setType(QCPItemPosition::ptPlotCoords);
textLabel->position->setCoords(x[0], yBubble[n_dados/2]);
textLabel->setText(QString::number(tempoTotal));
*/
//Em Cada Ponto
for (int i = 0; i < n_dados; i++){
if(ui->checkBubble->isChecked()){
QCPItemText *textLabel = new QCPItemText(ui->customPlot);
ui->customPlot->addItem(textLabel);
textLabel->setPositionAlignment(Qt::AlignBottom |Qt::AlignRight);
textLabel->position->setType(QCPItemPosition::ptPlotCoords);
textLabel->position->setCoords(x[i], yBubble[i]);
value = round(((somaTBubble[i]*100)/tempoTotal)*100)/100;
porcentagem = QString::number(value);
textLabel->setText(porcentagem + "%");
}
if(ui->checkQuick->isChecked()){
QCPItemText *textLabel2 = new QCPItemText(ui->customPlot);
ui->customPlot->addItem(textLabel2);
textLabel2->setPositionAlignment(Qt::AlignBottom |Qt::AlignRight);
textLabel2->position->setType(QCPItemPosition::ptPlotCoords);
textLabel2->position->setCoords(x[i], yQuick[i]);
value = round(((somaTQuick[i]*100)/tempoTotal)*100)/100;
porcentagem = QString::number(value);
textLabel2->setText(porcentagem + "%");
}
}
//Reescalar os eixos para os maiores valores
if (ui->checkQuick->isChecked() && !(ui->checkBubble->isChecked()))
{
ui->customPlot->graph(1)->rescaleAxes();
ui->customPlot->yAxis->setRangeUpper((yQuick[n_dados-1]+DpQuick[n_dados-1])*1.1); //Apenas para o gráfico não cortar os dados
}
else{
ui->customPlot->graph(0)->rescaleAxes();
ui->customPlot->yAxis->setRangeUpper((yBubble[n_dados-1]+DpBubble[n_dados-1])*1.1);
}
//Ajustar Legenda
ui->customPlot->axisRect()->insetLayout()->setInsetAlignment(0,Qt::AlignLeft|Qt::AlignTop);
ui->customPlot->legend->setVisible(true);
//Ajustar Eixos
ui->customPlot->xAxis->setLabel("Tamanho do Vetor");
ui->customPlot->yAxis->setLabel("Tempo (segundos)");
ui->customPlot->xAxis->setRange(0,tam_max + passo);
ui->customPlot->yAxis->setRangeLower(0);
ui->customPlot->replot();
}
}