Forum: C Sep 24th, 2006 |
| Replies: 42 Views: 52,470 theForger's Win32 API tutorial -- a must read for beginners
http://winprog.org/tutorial/
Official Microsoft Windows API documentation
http://msdn2.microsoft.com (http://msdn.microsort.com)
... |
Forum: Computer Science Aug 8th, 2006 |
| Replies: 5 Views: 1,944 Heh, it's mostly a curosity. C++ std::sort runs about twice faster (what can I say, I'm not very good at coding) but it beats my handwritten optimized quicksort routine by about 20% on random lists.... |
Forum: Computer Science Aug 5th, 2006 |
| Replies: 10 Views: 3,215 Well, seeing as your inputs aren't anything fancy (as in, with more than a couple hundred possibly parenthesized, nested operands) the focus should be on implementing this easily, elegantly and... |
Forum: Computer Science Aug 5th, 2006 |
| Replies: 5 Views: 2,219 You don't need neural networks. A context-based dictionary will do. Match the words against the dictionary, find all legal reorderings of the letters into English words and choose the best one based... |
Forum: Computer Science Aug 5th, 2006 |
| Replies: 10 Views: 3,215 Will this interface be open to a casual user? Then you may need to handle full-blown parenthesized expressions; otherwise you could just use stacks and evaluate using RPN... |
Forum: Computer Science Aug 5th, 2006 |
| Replies: 5 Views: 1,944 Hope everyone's kind to a newbie :)
I kind of "discovered" (if that's what you call it) this simple quicksort variant just today. I was wondering if anyone had seen it before. I Googled around a... |