Leetcode 1302.层数最深子叶结点的和

大家好,今天我给大家分享一下我关于这个题的想法,我这个题过程比较复杂,但大家如果觉得好的话,就请给个免费的赞吧,谢谢了^ _ ^

1.题目要求:

c 复制代码
给你一棵二叉树的根节点 root ,请你返回 层数最深的叶子节点的和 。

举例如图所示:

2.做题思路:

1.先用前序遍历求出树的结点数量:

c 复制代码
void preorder(struct TreeNode* root,int* length){
    if(root == NULL){
        return;
    }
    (*length)++;
    preorder(root->left,length);
    preorder(root->right,length);
}
int* length = (int*)malloc(sizeof(int));
    *length = 0;
    preorder(root,length);

2.然后再根据结点数量用malloc分配两个数组,一个要进行层序遍历,一个要记录树每一层的宽度:

c 复制代码
	//此数组是用来存层序遍历的
	int* treeval = (int*)malloc(sizeof(int)* (*length));
    int j = 0;
    //此数组是用来进行记录树的每层的宽度
    int* col = (int*)malloc(sizeof(int) * (*length + 1));
    int j_1 = 0;

3.然后我们进行层序遍历,设置变量把每一行结点的数量记录下来,再把每个结点存入数组中:

c 复制代码
typedef struct queue{
    struct TreeNode* data;
    struct queue* next;
}queue_t;
//入队
void insert_tail(queue_t** head,struct TreeNode* data)
{
    queue_t* newnode = (queue_t*)malloc(sizeof(queue_t));
    memset(newnode,0,sizeof(queue_t));
    newnode->data = data;
    newnode->next = NULL;
    if(*head == NULL){
        *head = newnode;
        return;
    }
    queue_t* cur = *head;
    while(cur->next != NULL){
        cur = cur->next;
    }
    cur->next = newnode;
}
//出队
struct TreeNode* pop(queue_t** head){
    if(*head == NULL){
        struct TreeNode* x = (*head)->data;
        (*head) = (*head)->next;
        return x;
    }
    struct TreeNode* x = (*head)->data;
    (*head) = (*head)->next;
    return x;
}
	//开始层序遍历
	
    int nextcount = 0;//记录树每一层的结点数量
    queue_t* quence = NULL;
    int size = 0;
    insert_tail(&quence,root);
    size++;
    while(size != 0){
        for(i = 0;i < count;i++){
            struct TreeNode* node = pop(&quence);
            treeval[j] = node->val;
            j++;
            size--;
            if(node->left != NULL){
                insert_tail(&quence,node->left);
                size++;
                nextcount++;
            }
            if(node->right != NULL){
                insert_tail(&quence,node->right);
                size++;
                nextcount++;
            }
        }
        col[j_1] = nextcount;
        j_1++;
        count = nextcount;
        nextcount = 0;
    }

3.全部代码:

c 复制代码
/**
 * Definition for a binary tree node.
 * struct TreeNode {
 *     int val;
 *     struct TreeNode *left;
 *     struct TreeNode *right;
 * };
 */
typedef struct queue{
    struct TreeNode* data;
    struct queue* next;
}queue_t;
//出队
void insert_tail(queue_t** head,struct TreeNode* data)
{
    queue_t* newnode = (queue_t*)malloc(sizeof(queue_t));
    memset(newnode,0,sizeof(queue_t));
    newnode->data = data;
    newnode->next = NULL;
    if(*head == NULL){
        *head = newnode;
        return;
    }
    queue_t* cur = *head;
    while(cur->next != NULL){
        cur = cur->next;
    }
    cur->next = newnode;
}
//入队
struct TreeNode* pop(queue_t** head){
    if(*head == NULL){
        struct TreeNode* x = (*head)->data;
        (*head) = (*head)->next;
        return x;
    }
    struct TreeNode* x = (*head)->data;
    (*head) = (*head)->next;
    return x;
}
//进行前序遍历
void preorder(struct TreeNode* root,int* length){
    if(root == NULL){
        return;
    }
    (*length)++;
    preorder(root->left,length);
    preorder(root->right,length);
}
int deepestLeavesSum(struct TreeNode* root) {
    int* length = (int*)malloc(sizeof(int));
    *length = 0;
    preorder(root,length);
    int* treeval = (int*)malloc(sizeof(int)* (*length));
    int j = 0;
    int* col = (int*)malloc(sizeof(int) * (*length + 1));
    int j_1 = 0;
    int count = 1;
    col[j_1] = count;
    j_1++;
    int i = 0;
    //记录树的每一层的宽度
    int nextcount = 0;
    queue_t* quence = NULL;
    int size = 0;
    insert_tail(&quence,root);
    size++;
    while(size != 0){
        for(i = 0;i < count;i++){
            struct TreeNode* node = pop(&quence);
            treeval[j] = node->val;
            j++;
            size--;
            if(node->left != NULL){
                insert_tail(&quence,node->left);
                size++;
                nextcount++;
            }
            if(node->right != NULL){
                insert_tail(&quence,node->right);
                size++;
                nextcount++;
            }
        }
        col[j_1] = nextcount;
        j_1++;
        count = nextcount;
        nextcount = 0;
    }
    int count1 = col[j_1 - 2];
    int sum = 0;
    int f = 0;
    for(i = j - 1;i >= 0;i--){
       sum += treeval[i];
       f++;
       if(f == count1){
            break;
       }
    }
    return sum;
}

好了,这就是我全部代码大家如果觉得好的话,就请给个免费的赞吧,谢谢了^ _ ^ .

相关推荐
@我漫长的孤独流浪27 分钟前
最短路与拓扑(2)
数据结构·c++·算法
<但凡.1 小时前
C++修炼:多态
开发语言·c++·算法
买了一束花1 小时前
数据预处理之数据平滑处理详解
开发语言·人工智能·算法·matlab
小雅痞1 小时前
[Java][Leetcode simple]26. 删除有序数组中的重复项
java·leetcode
YuforiaCode1 小时前
LeetCode 热题 100 35.搜索插入位置
数据结构·算法·leetcode
Jasmine_llq3 小时前
《P4391 [BalticOI 2009] Radio Transmission 无线传输 题解》
算法·字符串·substr
水水沝淼㵘3 小时前
嵌入式开发学习日志(数据结构--单链表)Day20
c语言·开发语言·数据结构·学习·算法
算法给的安全感3 小时前
bfs-最小步数问题
java·算法·宽度优先
灏瀚星空4 小时前
地磁-惯性-视觉融合制导系统设计:现代空战导航的抗干扰解决方案
图像处理·人工智能·python·深度学习·算法·机器学习·信息与通信
田梓燊4 小时前
专业课复习笔记 7
笔记·算法