Tagged Questions
The lower-bound tag has no wiki summary.
10
votes
3answers
459 views
The complexity of verifying solutions to NP-hard optimization problems?
(This may be a better fit at cstheory, but I figure that it's probably not a research-level topic.)
There are many optimization problems that are known to be NP-hard, such as the traveling salesman ...
7
votes
2answers
547 views
Lower bound on heapsort?
It's well-known that the worst-case runtime for heapsort is Ω(n lg n), but I'm having trouble seeing why this is. In particular, the first step of heapsort (making a max-heap) takes time ...
4
votes
1answer
191 views
STL functions with 3-way comparison predicate
Is there any library with STL functions like std::sort(), std::binary_search(), std::lower_bound(), std::upper_bound() accepting 3-way comparison predicates (which return -1 on less, 0 on equal, 1 on ...
3
votes
5answers
42 views
Regarding complexity (if comparison based sorting algorithm used)
as we all know that any sorting algorithm based on comparison model has lower bound of nlogn i.e Omega(nlogn).
which can be proved mathematically.
but as we all know dutch flag problem can sort 3 ...
3
votes
1answer
52 views
Test lower_bound's return value against the end iterator
In effective STL by Scott Meyers (page 195) there is the following line:
"The result of lower_bound must be tested to see if it's pointing to the value you're looking for. Unlike find, you can't just ...
3
votes
1answer
224 views
Implementation of C lower_bound
Based on the following definition found here
Returns an iterator pointing to the
first element in the sorted range
[first,last) which does not compare
less than value. The comparison is
...
3
votes
7answers
1k views
What .NET dictionary supports a “find nearest key” operation?
I'm converting some C++ code to C# and it calls std::map::lower_bound(k) to find an entry in the map whose key is equal to or greater than k. However, I don't see any way to do the same thing with ...
3
votes
2answers
208 views
Pixies in the custard swamp puzzle
(With thanks to Rich Bradshaw)
I'm looking for optimal strategies for the following puzzle.
As the new fairy king, it is your duty to map the kingdom's custard swamp.
The swamp is covered in an ...
2
votes
1answer
132 views
Discrepencies between std::lower_bound and std::set::lower_bound
The C++ draft says about std::lower_bound:
§ 25.4.3.1 lower_bound [lower.bound]
template<class ForwardIterator, class T>
ForwardIterator lower_bound(ForwardIterator first,
...
1
vote
2answers
89 views
scala inheritance and lower bound issue
I'm having some issues with inheritance and lower bounds in scala; I'll try to explain it with an example:
I have a class Person with a signature like:
def doSomething[P<%Person](persons :List[P]) ...
1
vote
2answers
101 views
How to return the greatest key strictly less than the given key in a std::multimap?
multimap offers the methods lower_bound and upper_bound. Both may return an iterator to a value with key greater than the desired, with lower_bound possibly yielding exactly the desired.
Now I want ...
1
vote
1answer
273 views
How to find a lower bound in a sorted vector
I'm pretty new to C++ and do not understand all the concepts of the STL library, so bear with me.
I wrote the following code snippet (pasted below) to find the lower_bound in a sorted vector.
Although ...
1
vote
1answer
192 views
How can I prove a lower bound that is \Omega{(n (logn)^k)} ? [k>1]
There are many algorithms run in O(n {log n}^k)-time, where k>1.
It would be very helpful if you could provide me some reference about any problem
that has:
\Omega{(n {log n}^k)} lower bound, ...
1
vote
3answers
187 views
Optimality of Binary Search
This may be a silly question, but does anyone know of a proof that binary search is asymptotically optimal? That is, if we are given a sorted list of elements where the only permitted operation on ...
0
votes
0answers
40 views
Proving average-case complexity of sorting algorithm
On a practise question, we are asked to prove that the average-case complexity of a sorting algorithm, that is only allowed to exchange adjacent elements (sorting is done through an array), is Ω(n^2).
...