-
Notifications
You must be signed in to change notification settings - Fork 0
/
cGreedy.cs
49 lines (45 loc) · 1.43 KB
/
cGreedy.cs
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
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Globalization;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using static System.Windows.Forms.VisualStyles.VisualStyleElement.Tab;
namespace tp_final
{
public class cGreedy
{
public List<string> template { get; set; }
/// <summary>
/// Inicializacion de la template
/// </summary>
public cGreedy()
{
template = new List<string>();
}
/// <summary>
/// Ordena los pedidos mediante una lista auxiliar ordenada de ante mano
/// </summary>
/// <param name="pedidos">Lista de pedidos a ordenar</param>
/// <returns>Lista de pedidos ordenada</returns>
public List<cPedido> ordenarPedidos(List<cPedido> pedidos)
{
List<cPedido> pedidosOrdenados = new List<cPedido>();
bool[] visitados = new bool[template.Count];
for (int i = 0; i < template.Count; i++)
{
for (int j = 0; j < pedidos.Count; j++)
{
if (template[i] == pedidos[j].barrio &&
visitados[i] == false)
{
pedidosOrdenados.Add(pedidos[j]);
visitados[i] = true;
}
}
}
return pedidosOrdenados;
}
}
}