Create 1898.cpp

pull/45/head
Kirigaya Kazuto 2016-12-09 23:50:47 +08:00 committed by GitHub
parent 7006f84a9e
commit 695de53630
1 changed files with 45 additions and 0 deletions

45
QUSTOJ/1898.cpp Normal file
View File

@ -0,0 +1,45 @@
#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;
}