Hi

I need help with the remove function in the AVL tree


void remove( generic x );

Thank you guys

Recommended Answers

All 5 Replies

Can you be a tad more specific?

I just can figure how many case I have to code for

and some cases is just hard to implement

Thank you for your replay

Well, since you don't appear to have any code I can help you with specifically, I'll simply link you to a tutorial that explains deletion in detail.

You're in Matt Buechler's CS153 class at MST, aren't you? Thought we could take the easy way out, didn't we?

Here's a start:

template<class generic>
void Avl<generic>::remove(generic x)
{
  //code goes here douchebag
}

You're in Matt Buechler's CS153 class at MST, aren't you? Thought we could take the easy way out, didn't we?

Here's a start:

template<class generic>
void Avl<generic>::remove(generic x)
{
  //code goes here douchebag
}

loool

I already got my code done :)

see you -;)

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.