首页 > 其他分享 >UVA - 699 The Falling Leaves 二叉树

UVA - 699 The Falling Leaves 二叉树

时间:2023-04-14 20:32:21浏览次数:55  
标签:node 标号 int 二叉树 rc UVA Falling include root


题目:http://acm.hust.edu.cn/vjudge/problem/viewProblem.action?id=19244

题意:给定一棵二叉树,把根节点标号成0,然后每往左走标号就减1,每往右走标号就加1,问相同标号的节点的值得和,按标号的大写依次输出

思路:输入挺坑的,不过看了一会,可以边输入边建树,碰到其他值要接着往下递归建树,碰到-1就不用递归了。判断是不是结束,只要判断根节点是否为空就可以了。建树的时候顺便给每个点标号,然后用map<int, int> 去映射标号与节点值和,最后依次输出就好

#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <queue>
#include <map>
#include <vector>
#include <set>
using namespace std;

const int N = 1100;
const int INF = 0x3f3f3f3f;
int cas = 0;
int a;
map<int, int> mpa;
struct node
{
    int v, sign;
    node *lc, *rc;
    node(int v = 0, int sign = 0, node *lc = NULL, node *rc = NULL): v(v), sign(sign), lc(lc), rc(rc){}
};
void build(node* &root, int cnt)
{
    scanf("%d", &a);
    if(a == -1) return; //不用建当前节点,也不用往下递归了
    root = new node(a, cnt);
    build(root ->lc, cnt - 1);
    build(root ->rc, cnt + 1);
}
void dfs(node *root)
{
    if(root != NULL)
    {
        mpa[root->sign] += root ->v;
        dfs(root ->lc);
        dfs(root ->rc);
    }
}
int main()
{
    while(true)
    {
        node *root = NULL;
        mpa.clear();
        build(root, 0);
        if(root == NULL) break; //根节点为空,结束
        else
        {
            dfs(root);
            printf("Case %d:\n", ++cas);
            bool flag = false;
            for(map<int, int> :: iterator p = mpa.begin(); p != mpa.end(); p++) //依次输出
            {
                if(! flag)
                    printf("%d", p ->second), flag = true;
                else printf(" %d", p ->second);
            }
            printf("\n");
        }
        printf("\n");
    }
    return 0;
}







标签:node,标号,int,二叉树,rc,UVA,Falling,include,root
From: https://blog.51cto.com/u_4158567/6191066

相关文章

  • LeetCode 周赛 340,质数 / 前缀和 / 极大化最小值 / 最短路 / 平衡二叉树
    本文已收录到AndroidFamily,技术和职场问题,请关注公众号[彭旭锐]提问。大家好,我是小彭。上周跟大家讲到小彭文章风格的问题,和一些朋友聊过以后,至少在算法题解方面确定了小彭的风格。虽然竞赛算法题的文章受众非常小,但却有很多像我一样的初学者,他们有兴趣参加但容易被题目难......
  • Party at Hali-Bula UVA - 1220
     多判断一个唯一性 only[x][0/1]#include<iostream>#include<cstring>#include<vector>#include<map>#include<algorithm>usingnamespacestd;constintN=205;intf[N][2],n,K;intonly[N][3];vector<int>g[N];map&l......
  • 二叉树先序,中序,后序遍历的非递归算法(一)
    前序遍历的非递归算法<法一>思路:二叉树的前序遍历过程:从树根开始沿着左子树一直深入,直到最左端无法深入时,返回;进入最近深入时遇到结点的右子树,再进行如此的深入和返回;直到最后从根节点的右子树返回到根节点为止;由其深入返回的过程我们知道可以用一个栈来帮助我们消除递归......
  • Another Crisis UVA - 12186
      #include<iostream>#include<cstring>#include<vector>#include<algorithm>usingnamespacestd;constintN=1e5+3;intf[N],n,K;vector<int>g[N];voiddfs(intx){ intb[N],tot; tot=0; if(g[x].size()==0)......
  • UVa 10182 Bee Maja (规律&O(1)算法)
    10182-BeeMajaTimelimit:3.000seconds http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=24&page=show_problem&problem=1123Majaisabee.Shelivesinabeehivewiththousandsofotherbees.Thisbeehivecon......
  • Alibaba UVA - 1632
    在一条直线的同一个方向上有nn件珠宝,已知每件珠宝的位置,并且第ii件珠宝在Ti时刻消失,问将所有的珠宝收集起来最小耗时?搜集不耗时,移动需要耗时 类似区间dpf[i][j][2]#pragmaGCCoptimize(2)#include<iostream>usingnamespacestd;constintN=1e4+3......
  • uva 11082 A Plug for UNIX
     #include<iostream>#include<vector>#include<map>#include<queue>#include<cstring>usingnamespacestd;constintN=1e4+2,M=5e5;intn1,n2,n3,len;map<string,int>mp;map<int,int>A,B;constintin......
  • 二叉树的先序遍历
    二叉树的先序遍历遍历二叉树遍历方法遍历方法有先序遍历,中序遍历,和后序遍历先序遍历:按照根,左子树,右子树的顺序遍历中序遍历:按照先左子树,根和右子树的顺序遍历后序遍历:按照先左子树,右子树和根的顺序遍历使用递归进行遍历二叉树的先序遍历算法示意图算法实现......
  • Calling Circles UVA - 247
    如果两个人相互打电话(直接或间接),则说他们在同一个电话圈里。例如,a打给b,b打给c,c打给d,d打给a,则这4个人在同一个圈里;如果e打给f但f不打给e,则不能推出e和f在同一个电话圈里。输入n(n≤25)个人的m次电话,找出所有电话圈。人名只包含字母,不超过25个字符,且不重复 对于一个有向图,Flo......
  • 4月12日数据结构,线索二叉树,哈夫曼树,哈夫曼编码
    线索二叉树与以往的二叉树略有不同,普通二叉树在访问到叶子结点的时候会返回,往往递归的效率并不高,有时还可能有栈溢出的风险,但是线索二叉树在访问到叶子结点的时候因为没有左右孩子,所以他左边存放他前驱的指针。右边存放后继的指针,是指从一个非线性结构变成了一个可以线性访问的的......