private void button3_Click(object sender, EventArgs e)
        {
            DateTime zaman = DateTime.Now;

            label9.Text = zaman.ToString();

            secim_ga_gredy = 2;
            nga            = new NewGredyAlgorithm();
            nga.AtamalariYap();
            listBox4.Items.Clear();
            foreach (Hasta hasta in nga._hastaList)
            {
                if (hasta.hastaID != 0)
                {
                    listBox4.Items.Add(hasta.gosterID.ToString());
                }
            }
            GredyRoralar(nga, listBox2, listBox3);

            zaman       = DateTime.Now;
            label8.Text = zaman.ToString();
        }