给定一个二叉树,判断它是否是高度平衡的二叉树。 本题中,一棵高度平衡二叉树定义为: 一个二叉树每个节点 的左右两个子树的高度差的绝对值不超过 1 。 来源:力扣(LeetCode) 链接:https://leetcode-cn.com/problems/balanced-binary-tree 著作 ...
分类:
其他好文 时间:
2020-12-03 11:59:09
阅读次数:
6
刚开始以为是 node 或 npm 版本问题,前前后后折腾了好久,终于解决了 2|0解决: 如果执行过npm install,先删除 node_modules 文件夹,不然运行的时候可能会报错 执行下面的命令 npm install chromedriver --chromedriver_cdnur ...
分类:
Web程序 时间:
2020-12-03 11:54:21
阅读次数:
8
大咖揭秘Java人都栽在了哪?点击免费领取《大厂面试清单》,攻克面试难关~>>> 来源 | 阿里巴巴云原生公众号 作者 | 何以然(以燃) 导读:曾经看上去很美、一直被观望的 Serverless,现已逐渐进入落地的阶段。今年的"十一出行节",高德在核心业务规模化落地 Serverless,由 Se ...
分类:
其他好文 时间:
2020-12-02 12:15:18
阅读次数:
4
非商业,LeetCode链接附上: https://leetcode-cn.com/problems/remove-duplicate-node-lcci/ 进入正题。 题目: 编写代码,移除未排序链表中的重复节点。保留最开始出现的节点。 示例: 示例1: 输入:[1, 2, 3, 3, 2, 1] ...
分类:
其他好文 时间:
2020-12-01 12:35:57
阅读次数:
10
基环树 基环树直径 P3248 #include<bits/stdc++.h> using namespace std; #define ll long long const int N=1e5+5; int n; int te,v[N<<1],pre[N<<1],tail[N]; ll L,len ...
分类:
其他好文 时间:
2020-12-01 12:29:19
阅读次数:
7
vue安装及配置 1.安装node.js 查看是否安装:node -v 下载node.js要求版本在8.9以上 官网:https://nodejs.org/zh-cn/ 使用淘宝NPM镜像源下载比较快 命令:npm install -g cnpm --registry=https://registr ...
分类:
其他好文 时间:
2020-12-01 12:18:29
阅读次数:
8
RabbitMQ 搭建可以参考:https://www.cnblogs.com/klvchen/p/14029336.html 官网集群介绍:https://www.rabbitmq.com/clustering.html 测试架构 | 名称 | IP | | | | | node-1 | 192. ...
分类:
其他好文 时间:
2020-11-27 11:54:15
阅读次数:
23
link /** * Definition for a binary tree node. * struct TreeNode { * int val; * TreeNode *left; * TreeNode *right; * TreeNode(int x) : val(x), left(NUL ...
分类:
其他好文 时间:
2020-11-27 11:14:59
阅读次数:
5
#include<queue> #include<vector> #include<unordered_map> using namespace std; struct Node { int x; int y; double cost; int parent; Node(int ix, int iy ...
分类:
编程语言 时间:
2020-11-27 11:07:17
阅读次数:
8
#include <stdio.h> typedef struct Node { int data; struct Node* lchild; struct Node* rchild; }Node; typedef Node* BinTree; int array[] = {1,2,3,4,5,6, ...
分类:
编程语言 时间:
2020-11-27 10:52:16
阅读次数:
17