예제 #1
0
파일: kolejka.cs 프로젝트: Wachal/Studia
        public void Enqueue(int x)
        {
            kol newKol = new kol(x);

            if (gora == null)
            {
                gora = newKol;
                q    = gora;
                return;
            }
            q.next = newKol;
            q      = newKol;
        }
예제 #2
0
파일: kolejka.cs 프로젝트: Wachal/Studia
        public void Dequeue()
        {
            if (this.Empty())
            {
                return;
            }

            if (gora == q)
            {
                gora = null;
                q    = null;
                return;
            }

            gora = gora.next;
        }