-
Notifications
You must be signed in to change notification settings - Fork 0
/
TreeNode.cs
72 lines (58 loc) · 2.13 KB
/
TreeNode.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
using System;
using System.Collections.Generic;
using System.Text;
namespace Proje3
{
class TreeNode
{
public Durak data;
public TreeNode leftChild;
public TreeNode rightChild;
public List<Müşteri> müşteriler;
public void displayNode()
{
Console.WriteLine("------------------------------ " +
"\nDurak Adı: "+data.getDurakAdı() +
"\nBP: " + data.getBP() +
"\nTB: " + data.getTB() +
"\nNB: " + data.getNB() );
Console.ReadLine();
int sayac = 1;
if (müşteriler != null)
{
foreach (Müşteri m in müşteriler)
{
Console.WriteLine(sayac + ".Müşteri;\n" +
"ID: " + m.getID() +
"\nSaat: " + m.getSaat() + ":" + m.getDakika()); Console.ReadLine(); sayac++;
}
}
else { Console.WriteLine("Bu durakta kayıtlı müşteri bulunmamaktadır!"); Console.ReadLine(); }
}
public void displayNode2(int ID)
{
if (müşteriler != null)
{
foreach (Müşteri m in müşteriler)
{
if(m.getID() == ID) { Console.WriteLine("Durak: " + data.getDurakAdı() + "\nSaat: " + m.getSaat() + ":" + m.getDakika()); }
}
}
}
public void editNode(int ID, String durakAdı)
{
if (data.durakAdı == durakAdı)
{
Random rastgele = new Random();
int saat = rastgele.Next(0, 24);
int dakika = rastgele.Next(10, 60);
Müşteri yeniMüşteri = new Müşteri(ID, saat, dakika);
müşteriler.Add(yeniMüşteri);
int BP = data.getBP();
int NB = data.getNB();
data.setBP(BP + 1);
data.setNB(NB - 1);
}
}
}
}