vote up 1 vote down star

I'm trying to print binary tree

void print_tree(Node * root,int level )
 {
    if (root!=NULL)  
    {  
        cout<< root->value << endl;
    }
    //...
}

How can I indent output in order to indent each value with level '-' chars.

flag

2 Answers

vote up 9 vote down check

You can construct a string to contain a number of repitions of a character:

std::cout << std::string(level, '-') << root->value << std::endl;
link|flag
Also use the '\t' char. – aviraldg Oct 11 at 10:13
1  
@Aviraldg - read the question. The indent is to consist of '-' chars. – Earwicker Oct 11 at 10:15
1  
Also, please don't use '\t'. On most consoles this will render as an 8-space tab, which is horrendously wide. – Matthew Scharley Oct 11 at 10:19
vote up 0 vote down

cout has special characters, below are two:

'\t' - tab
'\n' - new line

Hope it helped.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.