Exemplo n.º 1
0
        public static void BubbleSortByCharField(Model_Data[] AllData)
        {
            int length = AllData.Length;

            for (int i = 0; i < length - 1; i++)
            {
                for (int j = 0; j < length - (i + 1); j++)
                {
                    if (Model_Data.GreaterThanString(AllData[j].Grupo.ToString(), AllData[j + 1].Grupo.ToString()))
                    {
                        char switcher;
                        switcher             = AllData[j].Grupo;
                        AllData[j].Grupo     = AllData[j + 1].Grupo;
                        AllData[j + 1].Grupo = switcher;
                    }
                }
            }
        }
Exemplo n.º 2
0
        public static void BubbleSortByStringField(Model_Data[] AllData)
        {
            int length = AllData.Length;

            for (int i = 0; i < length - 1; i++)
            {
                for (int j = 0; j < length - (i + 1); j++)
                {
                    if (Model_Data.GreaterThanString(AllData[j].Titulo, AllData[j + 1].Titulo))
                    {
                        string switcher = null;
                        switcher              = AllData[j].Titulo;
                        AllData[j].Titulo     = AllData[j + 1].Titulo;
                        AllData[j + 1].Titulo = switcher;
                    }
                }
            }
        }