All Questions
3 questions
2
votes
1
answer
586
views
Tree search for path finding - algorithm critiques
So, I'm pretty new to AI in general, and am trying to implement a tree-based search from a textfile input (a maze). An example would be:
||||||||||||||||||||||
| || | | | \
| |||||| ...
-2
votes
3
answers
2k
views
How to manage a large list of distinct numbers
I have a list of around 2 billion distinct numbers stored in memory for some computation. Currently, every time I need to add a new entry I have to search the entire list for a potential duplicate.
...
8
votes
1
answer
3k
views
Good technique for search text tokenization
We are looking for a way to tokenize some text in the same or similar way as a search engine would do it.
The reason we are doing this is so that we can run some statistical analysis on the tokens. ...