码迷,mamicode.com
首页 > 其他好文 > 详细

SSRF - Pikachu

时间:2020-08-09 13:08:19      阅读:75      评论:0      收藏:0      [点我收藏+]

标签:nothing   substr   解码   mic   ima   $_server   rpo   har   数据   

1.二叉树的层次遍历

void levelTravse(BiTree root)
{
    if (root)
    {
        Queue q = CreateQueue();
        inQueue(q, root);
        while (emptyQueue(q))
        {
            BiTree e = outQueue(q);
            printf("%d", e->data);
            if (e->lchild)
            {
                inQueue(q, e->lchild);
            }
            if (e->rchild)
            {
                inQueue(q, e->rchild);
            }
            

        }
    }

}

 

2.计算二叉树的深度

int depthBinary(BiTree root) 
{
    if (!root)
    {
        return 0;
    }
    else
    {
        return depthBinary(root->lchild) > depthBinary(root->rchild) ? depthBinary(root->lchild) + 1 : depthBinary(root->rchild) + 1;
    }

}

 

好了,我们下回见,peace

SSRF - Pikachu

标签:nothing   substr   解码   mic   ima   $_server   rpo   har   数据   

原文地址:https://www.cnblogs.com/3cH0-Nu1L/p/13462107.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!