Search:

Type: Posts; User: helloworld922

Search: Search took 0.10 seconds.

  1. Thread: big O

    by helloworld922
    Replies
    3
    Views
    1,804

    Re: big O

    Written it's O(n). Either way you'll probably be able to get the idea across, which is the most important part. You could also call it linear runtime.

    big-omega and big-theta are similar...
  2. Thread: big O

    by helloworld922
    Replies
    3
    Views
    1,804

    Re: big O

    Two things about big-O notation to keep in mind:

    1. Any constant coefficients are removed. So O(10000000) -> O(1)

    2. You're only interested in the largest term as n approaches infinity, so...
Results 1 to 2 of 2