Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Devanshusp/data-structures

Repository files navigation

data-structures

  • ArrayList
    • int size()
    • void add(E element)
    • E get(int index)
    • void set(int index, E element)
    • void remove(int index)
    • String toString()
  • HashMap
    • int size()
    • void put(K key, V value)
    • V get(K key)
    • void remove(K key)
    • String toString()
  • LinkedList
    • int size()
    • void append(E value)
    • void prepend(E value)
    • E get(int index)
    • void insert(E value, int index)
    • boolean remove(E value)
    • E remove(int index)
    • String toString()
  • Stack
    • int size()
    • void push(E value)
    • E peek()
    • E pop()
    • String toString()
  • Queue
    • int size()
    • void enqueue(E value)
    • E peek()
    • E dequeue()
    • String toString()

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

Contributors

Languages

AltStyle によって変換されたページ (->オリジナル) /