Code Monkey home page Code Monkey logo

collections's Introduction

Collections (Golang)

import "github.com/tasnimzotder/collections"

Collections

Operations

Operation Description
Push Push element to the stack
Pop Pop element from the stack
Peek Peek element from the stack
IsEmpty Check if the stack is empty
Clear Clear the stack

Example

package main


import (
    "fmt"
    "github.com/tasnimzotder/collections"
)


func main() {
    var stack collections.Stack

    stack.Push(1)
    stack.Push(2)
    stack.Push(3)

    fmt.Println(stack.Pop())
    fmt.Println(stack.Pop())
}

Operations

Operation Description
Push Enqueue element to the queue
Pop Dequeue element from the queue
Peek Peek element from the queue
IsEmpty Check if the queue is empty
Clear Clear the queue

Example

package main


import (
    "fmt"
    "github.com/tasnimzotder/collections"
)


func main() {
    var queue collections.Queue

    queue.Push(1)
    queue.Push(2)
    queue.Push(3)

    fmt.Println(queue.Pop())
    fmt.Println(queue.Pop())
}

Operations

Operation Description
InsertAt Insert element at the given index
RemoveFrom Remove element at the given index
Get Get element at the given index
Clear Clear the linked list

Example

package main


import (
    "fmt"
    "github.com/tasnimzotder/collections"
)


func main() {
    var linkedList collections.LinkedList

    linkedList.InsertAt(0, 1)
    linkedList.InsertAt(1, 2)
    linkedList.InsertAt(2, 3)

    fmt.Println(linkedList.Get(0))
    fmt.Println(linkedList.Get(1))
    fmt.Println(linkedList.Get(2))
}

License

This project is licensed under the MIT License.

collections's People

Contributors

tasnimzotder avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.