CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Liminal

Search: Search took 0.03 seconds.

  1. Replies
    8
    Views
    8,051

    Re: Knights tour problem

    Look up something called Warnsdorff's heuristic. I was given the same assignment myself, and this helped quite a bit... I don't see A* being much help to you here...
  2. Replies
    0
    Views
    1,358

    Using templated class as binary predicate

    I have the following template class declaration:

    template<class T> class MapObjectList {

    hash_map<String, T*, MapObjectListHash<T*>, Equaller<T*> > map;

    ...

    }
  3. Re: Any interesting Python programs you have written?

    I've worked on a lot of automata related programs with Python: bottom-up parsers, top-down parsers, cellular automata demonstrations, DFA and NFA abstractions--oh yeah, and regular expressions, which...
  4. Replies
    19
    Views
    13,932

    Re: Writing My Own Operating System

    I took a look at some of the code you have--pretty interesting stuff you got there. I took a class last semester specifically for operating systems. We got as far as being able to load and run...
Results 1 to 4 of 4





Click Here to Expand Forum to Full Width

Featured