PAT A1004 Counting Leaves (30 分)

题意

题目提供结点数和非叶子结点的孩子和数目。求每一层的非叶子结点数目。

注意点

  • 当只有一个根结点时,该根结点也算叶子结点

题解

BFS广度优先搜索:

#include <stdio.h>
#include <queue>
#include <vector>
using namespace std;
const int maxn = 110;
//定义结点
struct node {
    int layer;
    vector<int> child;
} Node[maxn];
//变量
int n, nonLeaf, leaf[maxn] = {0};//layer[]记录每层有多少个没有孩子的结点
//BFS
int layerNum;//一共有多少层
void BFS(int &root) {
    queue<int> q;
    q.push(root);
    Node[root].layer = 1;
    layerNum = 1;//只有根节点,只有一层
    while (!q.empty()) {
        int now = q.front();
        q.pop();
        if (Node[now].child.size() == 0) leaf[Node[now].layer]++;
        for (int i = 0; i < Node[now].child.size(); i++) {
            int child = Node[now].child[i];
            q.push(child);
            Node[child].layer = Node[now].layer + 1;
            if (Node[child].layer > layerNum) {
                layerNum = Node[child].layer;
            }
        }
    }
}
int main() {
    scanf("%d%d", &n, &nonLeaf);
    //读入子结点
    for (int i = 0; i < nonLeaf; i++) {
        int index, childNum;
        scanf("%d%d", &index, &childNum);
        for (int j = 0; j < childNum; j++) {
            int temp;
            scanf("%d", &temp);
            Node[index].child.push_back(temp);
        }
    }
    int root = 1;
    BFS(root);
    for (int i = 1; i <= layerNum; i++) {
        printf("%d", leaf[i]);
        if (i != layerNum) printf(" ");
        else printf("\n");
    }
    return 0;
}

DFS深度优先搜索:

你可以这样解析出 map 中的 fullDocument 中的 OwnerID、name、QuotaSize: ``` package main import ( "fmt" "reflect" ) func main() { m := map[string]interface{}{ "_id": map[string]interface{}{ "_data": "8263B4EB63000000062B022C0100296E5A1004C3E4524B77B64630AC204C7469FAED7F46645F6964006463B4EB636EBBDB249F2ED2770004", }, "clusterTime": map[string]interface{}{ "1672801123": 6, }, "documentKey": map[string]interface{}{ "_id": "ObjectID(\"63b4eb636ebbdb249f2ed277\")", }, "fullDocument": map[string]interface{}{ "OwnerID": 123, "QuotaSize": 104857600, "_id": "ObjectID(\"63b4eb636ebbdb249f2ed277\")", "directory": "/buckets", "name": "123_test1", }, "ns": map[string]interface{}{ "coll": "UserQuotaConfig", "db": "filer3", }, "operationType": "insert", "wallTime": 1672801123879, } // 取出 fullDocument fullDocument, ok := m["fullDocument"].(map[string]interface{}) if !ok { fmt.Println("fullDocument not found") return } // 取出 OwnerID OwnerID, ok := fullDocument["OwnerID"].(int) if !ok { fmt.Println("OwnerID not found") return } fmt.Println("OwnerID:", OwnerID) // 取出 name name, ok := fullDocument["name"].(string) if !ok { fmt.Println("name not found") return } fmt.Println("name:", name) // 取出 QuotaSize QuotaSize, ok := fullDocument["QuotaSize"].(int) if !ok { fmt.Println("QuotaSize not found") return } fmt.Println("QuotaSize:", QuotaSize) } ``` 在这个例子中,我们首先将 map 赋值给了变量 m。然后使用类型断言取出了 fullDocument 并将其赋
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值