Stack
Stack

Stack is one of the most simple data structure. It's based on a LIFOlast in, first out – principle, which means, that the elemen inserted (push) into the structure as the last one, will be removed (pop) as the first one.

Opposite approach called FIFOfirst in, first out – is used in the queue data structure.

Abstract data type stack

The stack abstract data type specifies these operations:

  • push – Insert the element at the top of the stack.
  • pop – Remove the elements, which is at the top of the stack.
  • top – Return the element at the top of the stack.
  • isEmpty – Query whether the stack does not contain any element.

Usage

Stack is usually used for storing state in programs and algorithms. It is used in the Tarjan's algorithm, depth-first search or implicitly in all recursive algorithms. Stack-based architecture is also used in virtual machines of several programming languages – for example Java and Lisp.

Code


/**
 * Stack
 * Implemented as a linked list
 */
public class Stack {

    private Node first;
    private int size;

    public Stack() {
        this.size = 0;
    }

    /**
     * Inserts the element at the top of the stack
     * Complexity - O(1)
     * @param i element to be stored
     */
    public void push(int i) {
        Node n = new Node(i);

        Node currFirst = first;
        first = n;
        n.next = currFirst;

        size++;
    }

    /**
     * Removes the element, which is at the top of the stack
     * Complexity - O(1)
     * @return value of the element
     */
    public int pop() {
        if (size == 0) {
            throw new IllegalStateException("Stack is empty");
        }
        int value = first.value;
        first = first.next;
        size--;
        return value;
    }

    /**
     * Return the value of the element at the top of the stack
     * Complexity - O(1)
     * @return value of the element at the top of the stack
     */
    public int top() {
        if (size == 0) {
            throw new IllegalStateException("Stack is empty");
        }
        return first.value;
    }

    /**
     * Returns the size of the stack
     * @return size of the stack
     */
    public int getSize() {
        return this.size;
    }

    @Override
    public String toString() {
        StringBuilder builder = new StringBuilder();
        Node curr = first;
        for (int i = 0; i < this.size; i++) {
            builder.append(curr.value).append(" ");
            curr = curr.next;
        }
        return builder.toString();
    }

    /**
     * Inner represantation of the element (node of the linked list)
     */
    private class Node {

        private int value;
        private Node next;

        private Node(int value) {
            this.value = value;
        }
    }
}


SEO od společnosti Digital Pylon


Online casino s algoritmem

České casino online online slot-vegas.cz

Hrajte nejlepší hry jako je GoodGame Empire.





Zajímavé články: Jak najít práci snů? Zvolte kariéru v IT!, Češi mají rádi hrací automaty online, Jak funguje algoritmické obchodování Casino, Online výuka Algoritmus a online marketing mají svá pravidla, Automaty, Matematický vliv, Ratings, Jak fungují algoritmy hazardních her online: více znalostí, více peněz, SYPWAI - nástroj pro vědecký vývoj, Vynikají na globálním trhu: Nejlepší vývojáři softwaru pro online výherní automaty, Jak si vybrat nejlepší české online casino, Proč byste měli hrát online casino VPN revoluce, Kde najdeme algoritmy v každodenním životě?, Čeká vás pracovní pohovor mimo město? Podívejte se, jak dokonale zvládnout včasný příchod, 5 úžasných technologií ze světa hazardních her, Mirror and access to Mostbet, Svou kancelář můžete mít stále po ruce, Jaké výhody má digitalizovaná firma oproti off-line konkurenci?, Jaký systém vybrat pro snadné řízení výroby?, Nahradí umělá inteligence ajťáky?, Důvody, proč používat SnapTik ke stahování videí TikTok, Dokonalý den na pláži: Co si vzít s sebou, aby byl výlet zábavný a bezpečný?, Jak přežít dlouhý let?, Go pay GoodGame Empire, Blockchain, Rozhovor


Doporučujeme

Internet pro vaši firmu na míru

https://www.algoritmy.net