如何缩进 cout 输出?
我正在尝试打印二叉树
void print_tree(Node * root,int level )
{
if (root!=NULL)
{
cout<< root->value << endl;
}
//...
}
如何缩进输出以便使用级别“-”字符缩进每个值。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以构造一个字符串来包含某个字符的多次重复:
You can construct a string to contain a number of repitions of a character:
cout 有特殊字符,以下是两个:
希望有帮助。
cout has special characters, below are two:
Hope it helped.
您还可以缩进列,并考虑第一列的大小,然后考虑第二列的大小等。您可以在每列中找到最长的名称,然后使用填充设置该列中所有项目的宽度并根据需要对齐。您可以首先动态地搜索项目大小,然后选择宽度,或者您也可以静态地执行此操作,如下所示:
输出可能如下所示:
You also can indent with columns, and think about first column size, then second column size and etc. You can find longest name in every column and then set width for all items in this column with padding and align you wish. You can do it dynamically first search items size, then select width, or you can do it statically like:
The output may look like: