Tagged Questions
1
vote
3answers
314 views
Big O for worst-case running time and Ω is for the best-case, but why is Ω used in worst case sometimes?
I'm confused, I thought that you use Big O for worst-case running time and Ω is for the best-case? Can someone please explain?
And isn't (lg n) the best-case? and (nlg n) is the worst case? Or am I ...
0
votes
1answer
100 views
Algorithm and Data structure analysis compendium [closed]
I have googled a lot but i have not found any real good compendium about data structures and algorithm complexity. I have found "just" books or long papers..
I'm looking for something like a table ...
2
votes
1answer
67 views
Find all intersections between 3 PHP arrays
I am at a loss on how to find all "pairs" and "triplets" within 3 PHP arrays. My arrays look like this:
Array
(
[0] => Array
(
[sanitized] => lisa
[original] ...
6
votes
1answer
1k views
Hash Collision Linear Probing Running Time
I am trying to do homework with a friend and one question asks the average running time of search, add, and delete for the linear probing method. I think it's O(n) because it has to check at certain ...
2
votes
2answers
352 views
Give an asymptotic upper bound on the height of an n-node binary search tree in which the average depth of a node is Θ(lg n)
Recently, I'm trying to solve all the exercises in CLRS. but there are some of them i can't figure out. Here is one of them, from CLRS exercise 12.4-2:
Describe a binary search tree on n nodes ...