103.二叉树的锯齿形层次遍历 【从头做leetcode|从头做leetcode之leetcode 103 二叉树的锯齿形层次遍历】给定一个二叉树,返回其节点值的锯齿形层次遍历。(即先从左往右,再从右往左进行下一层遍历,以此类推,层与层之间交替进行)。
- 用一个变量记录层数,奇数尾插,偶数头插。
/**
* Definition for a binary tree node.
* struct TreeNode {
*int val;
*TreeNode *left;
*TreeNode *right;
*TreeNode(int x) : val(x), left(NULL), right(NULL) {}
* };
*/
class Solution {
public:
vector> zigzagLevelOrder(TreeNode* root) {
if(root == NULL) return {};
vector > res;
queue q;
int floor = 1;
q.push(root);
while(!q.empty()){
vector tmp;
int length = q.size();
while(length){
TreeNode* cur = q.front();
int data = https://www.it610.com/article/cur->val;
q.pop();
if(floor % 2 == 1){
tmp.push_back(data);
}
else{
tmp.insert(tmp.begin(),data);
}
if(cur->left) q.push(cur->left);
if(cur->right) q.push(cur->right);
length--;
}
res.push_back(tmp);
floor++;
}
return res;
}
};
通过时间:
文章图片
推荐阅读
- 人工智能|干货!人体姿态估计与运动预测
- 分析COMP122 The Caesar Cipher
- 技术|为参加2021年蓝桥杯Java软件开发大学B组细心整理常见基础知识、搜索和常用算法解析例题(持续更新...)
- 笔记|C语言数据结构——二叉树的顺序存储和二叉树的遍历
- C语言学习(bit)|16.C语言进阶——深度剖析数据在内存中的存储
- Python机器学习基础与进阶|Python机器学习--集成学习算法--XGBoost算法
- 数据结构与算法|【算法】力扣第 266场周赛
- 数据结构和算法|LeetCode 的正确使用方式
- leetcode|今天开始记录自己的力扣之路
- 人工智能|【机器学习】深度盘点(详细介绍 Python 中的 7 种交叉验证方法!)