Tagged Questions

1
vote
3answers
48 views

Top k problem - finding usage for my academic work

Top k problem - searching BEST k (3 or 1000) elements in DB There is fundamental problem with relational DB, that to find top k elems, there is a need to process ALL rows in table. Which make it …
6
votes
5answers
614 views

What’s the “Hello World!” of genetic algorithms good for?

I found this very cool C++ sample , literally the "Hello World!" of genetic algorithms. I so decided to re-code the whole thing in C# and this is the result. Now I am asking myself: is there any …