题目如下: Given an array of integers arr and an integer k. Find the least number of unique integers after removing exactly k elements. Example 1: Input: a ...
分类:
其他好文 时间:
2020-06-22 15:12:41
阅读次数:
60
In a deck of cards, every card has a unique integer. You can order the deck in any order you want. Initially, all the cards start face down (unreveale ...
分类:
其他好文 时间:
2020-06-22 13:13:01
阅读次数:
57
接上篇postgresql + pgpool 构建容灾高可用集群(数据同步流复制/主备自动切换) 本篇主要内容: pgpool-ii 安装 pgpool-ii 配置 pgpool-ii 验证 概述: 在postgresql12 安装完成之后, 我们需要安装pool-ii中间件, 来完成 HA 自动切 ...
分类:
其他好文 时间:
2020-06-22 12:32:25
阅读次数:
120
1.Maven的作用a.管理Jar i.增加第三方Jar(commons-fileupload commons-io.jar) ii.jar包之间的依赖关系(自动关联下载所有依赖的Jar) b.将项目拆分成若干个模块 2.Maven概念: 是基于Java平台的自动化构建工具 make-ant-mav ...
分类:
其他好文 时间:
2020-06-22 01:40:33
阅读次数:
60
递归 思路: 代码: # Definition for a binary tree node. # class TreeNode: # def __init__(self, val=0, left=None, right=None): # self.val = val # self.left = l ...
分类:
其他好文 时间:
2020-06-21 15:46:28
阅读次数:
40
125. 背包问题 II 中文English 有 n 个物品和一个大小为 m 的背包. 给定数组 A 表示每个物品的大小和数组 V 表示每个物品的价值. 问最多能装入背包的总价值是多大? 样例 样例 1: 输入: m = 10, A = [2, 3, 5, 7], V = [1, 5, 2, 4] ...
分类:
其他好文 时间:
2020-06-21 15:43:39
阅读次数:
51
The set [1,2,3,...,n] contains a total of n! unique permutations. By listing and labeling all of the permutations in order, we get the following seque ...
分类:
其他好文 时间:
2020-06-21 10:13:55
阅读次数:
48
阅读目录 概览 not null unique primary key foreign key 概览 为了防止不符合规范的数据进入数据库,在用户对数据进行插入、修改、删除等操作时,DBMS自动按照一定的约束条件对数据进行监测,使不符合规范的数据不能进入数据库,以确保数据库中存储的数据正确、有效、相容 ...
分类:
数据库 时间:
2020-06-21 10:10:31
阅读次数:
63
一、技术总结 本题为哈希映射的相关题目 因为一般的哈希表都是使用素数tsize进行作为最大空间,所需需要先编写一个素数判断函数,关键点是从i = 2开始遍历,只需要遍历到i * ii ? x即可; 哈希表本质是用最大的存储空间tsize取余,进行存储,但是会可能出现相同的余数,那么会发生冲突,这时就 ...
分类:
其他好文 时间:
2020-06-20 22:05:08
阅读次数:
56
3.3.1创建和查看数据表一、查看数据表 1.use onlinedb; 将数据库设为当前数据库 2.show tables; 查看数据库中的表 3.create table users( uID int(11) PRIMARY KEY AUTO_INCREMENT COMMENT '用户ID' u ...
分类:
数据库 时间:
2020-06-19 20:44:17
阅读次数:
115