Search Results

7
votes

Algorithm problem: letter combinations

It can be done easily recursively. The idea is that to handle the whole code of size n, you must handle first the n - 1 digits. Once you have all answers for n-1 digits, the answers for the …
1
vote

Data-structure that stores unique elements but answers queries for another ordering in C++

What you want can be achieved using the library Boost.Multi-index Check in particula …