Search code examples
Solving recurrences with iteration, substitution, Master Theorem?...

algorithmmathasymptotic-complexityrecurrence

Read More
How to solve the recurrence T(n) = T(n/2) + T(n/4), T(1) = 0, T(2) = 1 is T(n) = Θ(n lg φ ), where φ...

algorithmasymptotic-complexityrecurrence

Read More
Is there any implementation to Remove by Key and get the Value at the same time?...

c#.netdictionaryasymptotic-complexitytrygetvalue

Read More
Why is chess, checkers, Go, etc. in EXP but conjectured to be in NP?...

complexity-theoryasymptotic-complexitynp-completecomputability

Read More
Big O,theta and omega notation...

performancebig-otime-complexityasymptotic-complexity

Read More
Is 2^(log n) = O(log(n))?...

big-oasymptotic-complexitylogarithm

Read More
Asymptotic Growth: Understanding the specific proof of f(n) + little o(f(n)) = theta (f(n))?...

algorithmperformancetimebig-oasymptotic-complexity

Read More
What is the proper way to prove the following question on asymptotic notation?...

big-oasymptotic-complexity

Read More
Most efficient implementation to get the closest k items...

algorithmdata-structuresheapasymptotic-complexity

Read More
Asymptotic time complexity O(sqrt(n)log(n)n)...

algorithmbig-oasymptotic-complexity

Read More
Factorial digits sum puzzle, time complexity survey...

pythonpython-3.xtime-complexityasymptotic-complexity

Read More
Find the order of a function...

big-oasymptotic-complexitylogarithminequality

Read More
How can I reduce big O complexity of two for loops...

cbig-oasymptotic-complexity

Read More
Recurrence relation problems...

algorithmcomputer-scienceasymptotic-complexityrecurrence

Read More
Why does the Master Theorem only return Theta?...

asymptotic-complexityrecurrencemaster-theorem

Read More
Trying to understand the space complexity of concatenated string output...

pythonalgorithmtime-complexityasymptotic-complexityspace-complexity

Read More
How did the inner loop execute "n/i" times?...

time-complexitybig-oasymptotic-complexity

Read More
NP to P transition...

algorithmasymptotic-complexitynp

Read More
Do log bases matter in Big O domination?...

big-oasymptotic-complexity

Read More
Comparing runtime complexities for n^a * log(n)^b and n^c*log(n)^d...

algorithmasymptotic-complexity

Read More
Understanding an instance of upper bound, lower bound algorithmic analysis...

algorithmbig-ocomputer-scienceasymptotic-complexity

Read More
Big O Notation For An Algorithm That Contains A Shrinking List Inside While Loop...

algorithmtime-complexitybig-ograph-algorithmasymptotic-complexity

Read More
Complexity of algorithm std::includes in c++...

c++algorithmstlsetasymptotic-complexity

Read More
Asymptotic analysis of a given code...

algorithmbig-ocomputer-scienceasymptotic-complexity

Read More
In algorithm analysis, what does "for some constant c" actually mean? (E.g., QuickSort)...

algorithmsortingquicksortasymptotic-complexity

Read More
Calulating time complexity of loops with in loops example...

algorithmasymptotic-complexity

Read More
Solve recurrence T(n) = T(6n/5) + 1...

algorithmasymptotic-complexityrecurrencemaster-theorem

Read More
Asymptotic Analysis of Reversing a Queue...

c++stackqueuebig-oasymptotic-complexity

Read More
Big Theta Notation formula is confusing need clarity...

algorithmasymptotic-complexity

Read More
Finding the right complexity classes for functions...

algorithmtime-complexitybig-oasymptotic-complexity

Read More
BackNext