Skip to content
Snippets Groups Projects
Commit 998db525 authored by Bruno Freitas Tissei's avatar Bruno Freitas Tissei
Browse files

Add ternary_search

parent c5f20bd2
No related branches found
No related tags found
No related merge requests found
/**
* Breadth First Search - BFS
*
* Complexity (Time): O(|V| + |E|)
* Complexity (Space): O(|V| + |E|)
*/
......
/**
* Depth First Search - DFS
*
* Complexity (Time): O(|V| + |E|)
* Complexity (Space): O(|V| + |E|)
*/
......
/**
* Dijkstra
*
* Complexity (Time): O(|E| + |V| log |V|)
* Complexity (Space): O(|E| + |V|)
*/
......
/**
* Ternary Search
*
* Complexity (Time): O(log n)
* Complexity (Space): O(1)
*/
#define EPS 1e-6
// Unimodal function
double f(double x) {
return x * x;
}
// Execute ternary search to find maximum or minimum between l and r
double ternary_search(double l, double r) {
double rt, lt;
for (int i = 0; i < 500; ++i) {
if (fabs(r - l) < EPS)
return (l + r) / 2.0;
lt = l + (r - l) / 3.0;
rt = r - (r - l) / 3.0;
// < | minimum of f
// > | maximum of f
if (f(lt) < f(rt))
l = lt;
else
r = rt;
}
return (l + r) / 2.0;
}
/**
* Binary Indexed Tree - BIT
*
* Complexity (Time):
* Update -> O(log n)
* Query -> O(log n)
*
* Complexity (Space): O(n)
*/
......
/**
* Binary Indexed Tree 2D - BIT2D
*
* Complexity (Time):
* Update -> O(log^2 n)
* Query -> O(log^2 n)
*
* Complexity (Space): O(n^2)
*/
......
/**
* Bitmask
*
* Complexity (Time): O(1)
* Complexity (Space): O(1)
*/
......
/**
* Segment Tree
*
* Complexity (Time):
* Build -> O(n log n)
* Update -> O(log n)
* Query -> O(log n)
* Build -> O(n log n)
* Update -> O(log n)
* Query -> O(log n)
* Complexity (Space): O(n)
*/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment