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

Search:

Type: Posts; User: master78

Search: Search took 0.03 seconds.

  1. Replies
    3
    Views
    1,990

    Re: Depth First Search Question

    See DFS tutorial. Actually, you can't speed up DFS to find concrete vertex in the worst-case. Just, when DFS hits the vertex you are looking for, backtrack without visiting other vertices.
  2. Replies
    3
    Views
    2,246

    Re: Binary Tree anf Binary Search Tree

    The main difference, is that binary tree is a common data structure, but the binary search tree has some "order" in it.

    Look binary search tree tutorial for more info.
  3. Replies
    2
    Views
    1,856

    Re: Good Data Structures Book

    First, I would recommend you the simple programming tutorials website, where you can find some information on DS. Do you need a more theoretic book or binded to some programming language?
Results 1 to 3 of 3





Click Here to Expand Forum to Full Width

Featured