コード例 #1
0
ファイル: Program.cs プロジェクト: pkt-fit-knu/I22-19
        static void Main(string[] args)
        {
            {
                int count = 0;

                string line = "Outlook,Temperature,Humidity,Windy,Play*Sunny,hot,high,false,no*Sunny,hot,high,true,no*Overcast,hot,high,false,yes*Rainy,mild,high,false,yes*Rainy,cool,normal,false,yes*Rainy,cool,normal,true,no*Overcast,cool,normal,true,yes*Sunny,mild,high,false,no";

                string[] arr = line.Split('*');

                foreach (char a in arr[0])
                    if (a == ',') count++;

                string[][] mass = new string[arr.Length][];
                for (int i = 0; i < arr.Length; i++)
                    mass[i] = arr[i].Split(',');

                Tree tree = new Tree();

                act(mass, tree, count);

                //выводим дерево на консоль
                tree.Show();
            }
            Console.ReadKey();
        }
コード例 #2
0
ファイル: Program.cs プロジェクト: pkt-fit-knu/I22-19
        public static void act(string[][] mas, Tree tree, int count)
        {
            //выбираем лучшую ветку
            List<double> ginilist = new List<double>();
            double[] ginigini = null;
            for (int i = 0; i < count; i++)
            {
                ginigini = classify(i, mas, count);
                ginilist.Add(ginigini[ginigini.Length - 1]);
                //Console.WriteLine(ginilist[i]);
            }

            int index = ginilist.IndexOf(ginilist.Min());
            double[] ginimasiv = classify(index, mas, count);

            //и добавляем ее в дерево
            List<string> children = new List<string>();
            for (int i = 1; i < mas.Length; i++)
            {
                if (!children.Contains(mas[i][index]))
                    children.Add(mas[i][index]);
            }

            tree.Add(mas[0][index], children);

            //если child идеальный - то добавляем результат в дерево

            for (int i = 0; i < ginimasiv.Length - 1; i++)
            {
                if (ginimasiv[i] == 0)
                {

                    string yesno = null;
                    for (int j = 1; j < mas.Length; j++)
                        if (mas[j][index] == children[i])
                        {
                            yesno = mas[j][count];
                            break;
                        }

                    tree.Add(yesno, null);

                }
                else
                {

                    int lich = 0;
                    for (int j = 1; j < mas.Length; j++)
                        if (mas[j][index] == children[i]) lich++;

                    string[][] newmas = new string[lich+1][];

                    newmas[0] = mas[0];
                    int ii = 1;
                    for (int j = 1; j < mas.Length; j++)
                    {
                        if (mas[j][index] == children[i])
                            newmas[ii++] = mas[j];
                    }

                    act(newmas, tree, count);
                }
            }
        }