Exemplo n.º 1
0
        public static void Main(String[] args)
        {
            Stav pocatek = nactiData();

            tab    = new Tabulka(maxobjem());
            fronta = new Fronta();
            sk     = new SeznamStavu(tab, fronta);
            prelevani(pocatek);
            vypisVystup();
        }
Exemplo n.º 2
0
 public SeznamStavu(Tabulka t, Fronta f)
 {
     this.seznamStavu = new Dictionary <Stav, int>();
     this.tabulka     = t;
     this.fronta      = f;
 }