|
@@ -11,7 +11,7 @@
|
11
|
11
|
/// the packets in the netflow file using the Bubble sort algorithm.
|
12
|
12
|
/// \param netdata Packet vector that will be sorted.
|
13
|
13
|
/// \~Spanish
|
14
|
|
-/// \brief Function que ordena por direccion fuente
|
|
14
|
+/// \brief Funcion que ordena por direccion fuente
|
15
|
15
|
/// los paquetes en el archivo de netflows usando el algoritmo de Bubble sort (Burbuja).
|
16
|
16
|
/// \param netdata Vector de paquetes a ser ordenado.
|
17
|
17
|
void SortBySrcAddr(vector<Packet> &netdata){
|
|
@@ -31,7 +31,7 @@ void SortBySrcAddr(vector<Packet> &netdata){
|
31
|
31
|
/// the packets in the netflow file using the Selection sort algorithm.
|
32
|
32
|
/// \param netdata Packet vector that will be sorted.
|
33
|
33
|
/// \~Spanish
|
34
|
|
-/// \brief Function que ordena por direccion destino
|
|
34
|
+/// \brief Funcion que ordena por direccion destino
|
35
|
35
|
/// los paquetes en el archivo de netflows usando el algoritmo de Selection sort (Seleccion).
|
36
|
36
|
/// \param netdata Vector de paquetes a ser ordenado.
|
37
|
37
|
void SortByDstAddr(vector<Packet> &netdata){
|
|
@@ -49,12 +49,12 @@ void SortByDstAddr(vector<Packet> &netdata){
|
49
|
49
|
/// the packets in the netflow file using the Bubble sort algorithm.
|
50
|
50
|
/// \param netdata Packet vector that will be sorted.
|
51
|
51
|
/// \~Spanish
|
52
|
|
-/// \brief Function que ordena por puerto fuente
|
53
|
|
-/// los paquetes en el archivo de netflows usando el algoritmo de Selection sort (Burbuja).
|
|
52
|
+/// \brief Funcion que ordena por puerto fuente
|
|
53
|
+/// los paquetes en el archivo de netflows usando el algoritmo de Bubble sort (Burbuja).
|
54
|
54
|
/// \param netdata Vector de paquetes a ser ordenado.
|
55
|
55
|
void SortBySrcPort(vector<Packet> &netdata){
|
56
|
56
|
|
57
|
|
- // Space to implement the Selection Sort algorithm
|
|
57
|
+ // Space to implement the Bubble Sort algorithm
|
58
|
58
|
|
59
|
59
|
|
60
|
60
|
// YOUR CODE HERE
|
|
@@ -64,15 +64,15 @@ void SortBySrcPort(vector<Packet> &netdata){
|
64
|
64
|
/// \fn void SortByDstPort(vector<Packet> &netdata)
|
65
|
65
|
/// \~English
|
66
|
66
|
/// \brief Function that sorts by destination port
|
67
|
|
-/// the packets in the netflow file using the Bubble sort algorithm.
|
|
67
|
+/// the packets in the netflow file using the Selection sort algorithm.
|
68
|
68
|
/// \param netdata Packet vector that will be sorted.
|
69
|
69
|
/// \~Spanish
|
70
|
|
-/// \brief Function que ordena por puerto destino
|
71
|
|
-/// los paquetes en el archivo de netflows usando el algoritmo de Bubble sort (Burbuja).
|
|
70
|
+/// \brief Funcion que ordena por puerto destino
|
|
71
|
+/// los paquetes en el archivo de netflows usando el algoritmo de Selection sort (Seleccion).
|
72
|
72
|
/// \param netdata Vector de paquetes a ser ordenado.
|
73
|
73
|
void SortByDstPort(vector<Packet> &netdata){
|
74
|
74
|
|
75
|
|
- // Space to implement the bubble sort algorithm
|
|
75
|
+ // Space to implement the Selection sort algorithm
|
76
|
76
|
|
77
|
77
|
|
78
|
78
|
// YOUR CODE HERE
|