GithubHelp home page GithubHelp logo

bobbybobs's Introduction

BobbyBobs

METHODS:

We followed the runtimes given by the Java API Subset found here.

void add(String s)
A String is appended to the end of the ArrayPriorityQueue, which has a runtime of O(1).

boolean isEmpty()
Returns whether or not the ArrayPriorityQueue is empty, determined through _size, which has a runtime of O(1).

String peekMin()
Iterates through the ArrayPriorityQueue to find the string of smallest value using .compareTo, which has a runtime of O(n).
String removeMin()
Iterates through the ArrayPriorityQueue to find the string of smallest value using .compareTo, and removing it. This has a runtime of O(n) as well.

Belated HEAP TO-DO/DONE List:

  1. isEmpty()/peekMin() -- these two methods seem the most easy to implement
  2. minChildPos(int) -- this method is a helper function to removeMin, meaning it is essential to the implementation of it
  3. toString() -- would help testing
  4. removeMin()/add(Integer) -- the central focus of the works

bobbybobs's People

Contributors

qzhou0 avatar eddiezhu3 avatar

Watchers

topher mykolyk avatar  avatar  avatar Johnny Wong avatar

bobbybobs's Issues

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.