public void push(int kulcs) { VeremCsomoPont s = new VeremCsomoPont(kulcs); if (this.vege == null) { this.eleje = this.vege = s; return; } this.vege.kovetkezo = s; this.vege = s; }
public void pop() { if (this.eleje == null) { return; } VeremCsomoPont temp = this.eleje; this.eleje = this.eleje.kovetkezo; if (this.eleje == null) { this.vege = null; } }
public Verem() { this.eleje = this.vege = null; }
public VeremCsomoPont(int kulcs) { this.kulcs = kulcs; this.kovetkezo = null; }