I need to compute the big O of my algorithm.
It is contained from two nested for, each of them have binary search tree. the complexity of binary search tree is O(log n)
How can i compute the right complexity of my algorithm ?
Does it O(log(n)log(m)) or O(log(nm)) ?