GithubHelp home page GithubHelp logo

cooervo / algorithms-datastructures-bigonotation Goto Github PK

View Code? Open in Web Editor NEW
282.0 282.0 79.0 113 KB

Big O notation cheatsheets. algorithms and data structures explanations and implementations

Home Page: https://www.mifitnessfacil.com/

CSS 3.68% JavaScript 45.14% HTML 51.18%

algorithms-datastructures-bigonotation's People

Contributors

aligg avatar cooervo avatar loki-one avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

algorithms-datastructures-bigonotation's Issues

Issue with Element on Cheat Sheet

In full screen, the "About" section floats over the aside.
When I changed the dimensions of the screen, multiple objects start to overlap.
I've attached some images with version info.
algo_website_debug
algo_website_debug_edge
chrome_version
edge_version
I'd help but... I'm terrible with HTML. Glad to help with any math or programming content. Sure my email is on my profile.

for-loop of O(Log N) resulted infinite executions.

Hi,

I believe this is a typo error.


for(int i=0; i < n; i *= 2) {
       //do something in constant time...
}	

could be


for(int i=1; i < n; i *= 2) {
        //do something in constant time...
}	

But hey, many thanks for making me closer to understand O(Log N) and O(N * Log N). It really helps!

Big O notation

In "Big O notation" page, Bubble sort is presented as a linear time example (ie. O(n)).
However, it is O(n^2).

Why hide other rows when hovering?

The tables are amazing for showing people the importance of efficient algorithms, especially the "Growth Rates" comparison. However, when pointing at a certain row with the cursor, the other ones disappear. I know this is probably intentional, but it makes it difficult to show someone the comparison in person, as I cannot use my cursor to point at a specific row.

By comparison, I mean the differences between the rows as the input size grows, not the differences within a row.

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.