mirror of
https://github.com/Kiritow/OJ-Problems-Source.git
synced 2024-03-22 13:11:29 +08:00
46 lines
649 B
C++
46 lines
649 B
C++
|
#include <cstdio>
|
||
|
#include <cstring>
|
||
|
#include <cstdlib>
|
||
|
#include <algorithm>
|
||
|
using namespace std;
|
||
|
|
||
|
struct btree
|
||
|
{
|
||
|
btree* l;
|
||
|
btree* r;
|
||
|
char v;
|
||
|
int depth;
|
||
|
};
|
||
|
|
||
|
btree _node;
|
||
|
btree* root=&_node;
|
||
|
int maxdepth=0;
|
||
|
|
||
|
void deal(btree* n)
|
||
|
{
|
||
|
scanf("%c",&n->v);
|
||
|
if(n->v=='#')
|
||
|
{
|
||
|
n->l=n->r=NULL;
|
||
|
return ;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
maxdepth=max(n->depth,maxdepth);
|
||
|
n->l=new btree;
|
||
|
n->l->depth=n->depth+1;
|
||
|
deal(n->l);
|
||
|
n->r=new btree;
|
||
|
n->r->depth=n->depth+1;
|
||
|
deal(n->r);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
root->depth=1;
|
||
|
deal(root);
|
||
|
printf("%d\n",maxdepth);
|
||
|
return 0;
|
||
|
}
|