-
Notifications
You must be signed in to change notification settings - Fork 0
/
Claritate.h
executable file
·70 lines (62 loc) · 2.49 KB
/
Claritate.h
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
/*
* Copyright (C) 2015 José Flávio de Souza Dias Júnior
*
* This file is part of Claritate - <http://www.joseflavio.com/claritate/>.
*
* Claritate is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Claritate is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Claritate. If not, see <http://www.gnu.org/licenses/>.
*/
/*
* Direitos Autorais Reservados (C) 2015 José Flávio de Souza Dias Júnior
*
* Este arquivo é parte de Claritate - <http://www.joseflavio.com/claritate/>.
*
* Claritate é software livre: você pode redistribuí-lo e/ou modificá-lo
* sob os termos da Licença Pública Menos Geral GNU conforme publicada pela
* Free Software Foundation, tanto a versão 3 da Licença, como
* (a seu critério) qualquer versão posterior.
*
* Claritate é distribuído na expectativa de que seja útil,
* porém, SEM NENHUMA GARANTIA; nem mesmo a garantia implícita de
* COMERCIABILIDADE ou ADEQUAÇÃO A UMA FINALIDADE ESPECÍFICA. Consulte a
* Licença Pública Menos Geral do GNU para mais detalhes.
*
* Você deve ter recebido uma cópia da Licença Pública Menos Geral do GNU
* junto com Claritate. Se não, veja <http://www.gnu.org/licenses/>.
*/
#include <cstdlib>
#include <cstring>
#include <cstdio>
#include <cmath>
#include <fstream>
using namespace std;
#define DESCONEXO 0
struct Centralidade {
int posicao;
float valor;
};
int Claritate( int** matriz1, int** matriz2, int total, int L1, int L2, ofstream* saida );
bool Inicializar( int** adjacencia, int** distancia, int* grau_entrada, Centralidade* centralidade, int total );
void Deslocar( int posicao_atual, int posicao_nova, int* ordem, int total );
long Dispersao( int** adjacencia, int* ordem, int total, bool orientado );
void ImprimirResultado( int* ordem, int total, ostream* saida );
int CompararCentralidade( const void* a, const void* b );
inline int Sortear( int maximo );
/*
*
* "Alia claritas solis,
* alia claritas lunae et
* alia claritas stellarum;
* stella enim a stella differt in claritate." (1Cor 15:41)
*
*/