left
-
[LeetCode] 919. Complete Binary Tree Inserter
A complete binary tree is a binary tree in which every level, except possibly the last, is…
-
java数据结构分析-红黑树
红黑树的特性(1)每个节点或者是黑色,或者是红色。(2)根节点是黑色。(3)每个叶子节点(NIL)是黑色。 [注意:这里叶子节点,是指为空(NIL 或NULL)的叶子节点! ](4…
-
多进程计算质素
示例:primer.c #include <stdio.h>#include <stdlib.h>#include <pthread.h>#in…
-
LeetCode 215 Kth Largest Element in an Array 数组中的第K大元素
描述 Given an integer array nums and an integer k, return the kth largest element in the arr…
-
算法:对称的二叉树
问题 请实现一个函数,用来判断一棵二叉树是不是对称的。如果一棵二叉树和它的镜像一样,那么它是对称的。 解决 //定义二叉树结构 /** * Definition for a bin…
-
灰色预测模型(未完成)
灰色预测模型 灰色预测的概念 灰色系统的应用范畴大致分为以下几方面: 灰色关联分析。 灰色预测:人口预测;灾变预测… 灰色决策。 灰色预测控制 灰色系统:系统内一部分信息已知,另一…
-
宠物小精灵之收服
宠物小精灵之收服 宠物小精灵是一部讲述小智和他的搭档皮卡丘一起冒险的故事。 一天,小智和皮卡丘来到了小精灵狩猎场,里面有很多珍贵的野生宠物小精灵。 小智也想收服其中的一些小精灵。 …
-
【JS】使用JavaScript实现轮播图
<!doctype html> <html lang=”en”> <head> <meta charset=”UTF-8″> <…
-
LeetCode 226 Invert Binary Tree DFS
Given the root of a binary tree, invert the tree, and return its root. Solution: 直接使用 /(DF…
-
[Google] LeetCode 366 Find Leaves of Binary Tree 思维+DFS
Given the root of a binary tree, collect a tree’s nodes as if you were doing this: C…