Java面试炼金系列 (1) | 关于String类的常见面试题剖析 文章以及源代码已被收录到:https://github.com/mio4/Java-Gold 0x0 基础知识 1. '==' 运算符 Java中的数据类型分为基本数据类型和引用数据类型: 基本类型:编程语言中内置的最小粒度的数据 ...
分类:
编程语言 时间:
2020-09-18 00:03:04
阅读次数:
40
二叉搜索树(BST, Binary Search Tree) 1. 二叉树也是一颗二叉树, 可以为空 2. 如果不为空,则满足以下条件 1. 非空左子树的所有键值小于其根节点的键值 2. 非空右子树的所有键值大于其根节点的键值 3. 左, 右子树本身也是搜索树 3. 二叉搜索树的特点 1. 二叉搜索 ...
分类:
其他好文 时间:
2020-09-17 23:06:23
阅读次数:
31
题意:给定n个数构建完全二叉树,输出完全二叉树的层序遍历 思路:二叉树的中序遍历建树即为输出 #include<cstdio> #include<queue> #include<vector> #include<algorithm> using namespace std; const int N ...
分类:
其他好文 时间:
2020-09-17 23:04:06
阅读次数:
30
h5:<!doctypehtml><htmllang="en"><head><metacharset="UTF-8"><metaname="Generator"content="EditPlus?"><metaname="Author"content=""><metaname="Keywords"content=""&g
分类:
移动开发 时间:
2020-09-17 22:16:19
阅读次数:
39
When searching google with the keywords 'n-way anova python', you almost get nothing but one-way/two-way ANOVA from scipy. I developed a C++ version y ...
分类:
编程语言 时间:
2020-09-17 21:33:43
阅读次数:
31
实验九 python包管理 班级: 物流192 姓名: 马群 学号: 3190505201 指导老师: 修宇 成绩: 日期: 【实验目的】 进一步 了解python 的计算生态,python第3方包的安装方式 掌握采用pip 命令搜索、下载、安装卸载 python包的方法; 【实验条件】 PC机或者 ...
分类:
编程语言 时间:
2020-09-17 20:43:23
阅读次数:
29
报错信息: trying to create too many buckets. must be less than or equal to: [100000] but was [100001]. this limit can be set by changing the [search.max_b ...
分类:
其他好文 时间:
2020-09-17 19:52:17
阅读次数:
105
package LeetCode_758 import java.util.* import kotlin.collections.HashSet /** * 758. Bold Words in String * (Prime) * Given a set of keywords words an ...
分类:
其他好文 时间:
2020-09-17 18:53:02
阅读次数:
31
IOException, Broken pipe - 国际版 Bing https://cn.bing.com/search?q=IOException%2C%20Broken%20pipe&qs=n&form=QBRE&sp=-1&pq=ioexception%2C%20broken%20pipe ...
分类:
其他好文 时间:
2020-09-17 17:31:11
阅读次数:
30
1. 登录服务器 2. 登录docker docker exec -it ***容器名*** /bin/bash 3. 查看 PHP版本 php -v 4. 查找扩展包 yum search bcmath 5 选择版本并安装 yum install php72-php-bcmath.x86_64 6 ...
分类:
Web程序 时间:
2020-09-17 16:58:55
阅读次数:
47