mirror of
https://github.com/Kiritow/OJ-Problems-Source.git
synced 2024-03-22 13:11:29 +08:00
Create 1898.cpp
This commit is contained in:
parent
7006f84a9e
commit
695de53630
45
QUSTOJ/1898.cpp
Normal file
45
QUSTOJ/1898.cpp
Normal 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;
|
||||
}
|
Loading…
Reference in New Issue
Block a user