John Mavrick's Garden

Search IconIcon to open search

Last updated April 10, 2022

loadStatus: Tags: #archivedCards/cmpt125/bigo Links: Big O Notation


Big O Notation Calculating Time Complexity

Principles

Multiple Inputs

Varying Lengths

Array of strings, sorted each string, then sorted array ?

Recursive Calls

General Methodology

Code Operations

Steps for for loops ?

Recursive T(N-1) is;; O(n)

Recursive T(N/2) is O;; (logN)

Recursion

For Loops

for(i=1;i<n;i=i*2) ? Image from Gyazo

for (i=n; i>=1; i=i/2) ? Image from Gyazo

for (i=0; i*i<n; i++) ?

Explain the process Image from Gyazo ? Image from Gyazo


Backlinks


References:

Created:: 2021-10-19 14:11


Interactive Graph