Thread: problem on tree implementation

  1. #1
    Registered User
    Join Date
    Feb 2003
    Posts
    1

    Question problem on tree implementation

    good day!
    i need a c-code 2-3 Tree implementation of inserting and deleting a file. a 2-3 tree is a tree having an inner node having a minimum of 2 subtrees and a maximum of 3 subtrees and a tree having its leaves contain the whole record associated with its key. its inner node holds the minimum key of the 2nd subtree and of the 3rd subtree and holds the pointers to its children.

    thanks.

  2. #2
    ATH0 quzah's Avatar
    Join Date
    Oct 2001
    Posts
    14,826
    No one here is going to do your work for you. Try a search engine. Try something on your own. No one likes a lazy bastard.

    Quzah.
    Hope is the first step on the road to disappointment.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Binary tree problem
    By moddinati in forum C++ Programming
    Replies: 8
    Last Post: 06-19-2008, 05:05 PM
  2. Weight Balanced Tree - Implementation
    By paulovitorbal in forum C Programming
    Replies: 1
    Last Post: 10-31-2007, 02:28 PM
  3. A question related to strcmp
    By meili100 in forum C++ Programming
    Replies: 6
    Last Post: 07-07-2007, 02:51 PM
  4. Tutorial review
    By Prelude in forum A Brief History of Cprogramming.com
    Replies: 11
    Last Post: 03-22-2004, 09:40 PM
  5. Binary Search Tree, Inserting node
    By cheryl_li in forum C Programming
    Replies: 1
    Last Post: 09-13-2003, 03:53 AM