Tagged Questions
1
vote
3answers
500 views
Finding if a string is 'numeric only' using tr1 regex
tIs it possible for me to detect if a string is 'all numeric' or not using tr1 regex?
If yes, please help me with a snipped as well since I am new to regex.
Why I am looking towards tr1 regex for ...
0
votes
2answers
129 views
Preventing keys of different hash values from landing in same bucket with unordered_set
This might be a silly question, but here goes :
I hashed a dictionary of words into an unordered_set based hash-table. My hash function was made intentionally "bad", in that all strings that ...
2
votes
1answer
200 views
Index strings by other strings
I need to index specific strings with other strings and I can't really find a good way to do so. I tried to use tr1::unordered_map, but I'm having some difficulties using it.
If someone could tell me ...