Given a STL map, say map<int, bool> m1. Given two value a & b that may or 
may not exists in m1. Find the Least Common Ancestor in STL MAP. Remember 
you don't have access to root, so you need to iterate using iterator. Use 
the methods/function of MAP forex begin, end, find etc. Solution should be 
efficient in terms of time complexity (forex if we use method find, we get 
it in O(logN) internally)

-- 
You received this message because you are subscribed to the Google Groups 
"Algorithm Geeks" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to algogeeks+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to