Skip to content
 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 

Repository files navigation

Stack

Objective

The project's main focus is a comprehensive understanding of the stack.

Problem

Create a stack class to store Book objects.

Implementation

Create a stack class to store Book objects with all operations functions.

class Stack {


    public Stack () {
    }

    public void push(book value) {
    }

    public void pop() {

    }

    public book top() {
    }

    public boolean isEmpty() {
    }

    public int size() {
    }
}

About

No description, website, or topics provided.

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages