使用LogMiner查看归档日志 https://www.cnblogs.com/Memories-off/p/10435489.html 查看归档文件序号select sequence#,first_time from v$log_history order by first_time desc; ...
分类:
其他好文 时间:
2019-12-31 14:16:01
阅读次数:
70
Given a string, find the length of the longest substring without repeating characters. Example 1: Input: "abcabcbb"Output: 3 Explanation: The answer i ...
分类:
其他好文 时间:
2019-12-30 09:34:59
阅读次数:
59
原题链接在这里:https://leetcode.com/problems/fibonacci-number/ 题目: The Fibonacci numbers, commonly denoted F(n) form a sequence, called the Fibonacci sequenc ...
分类:
其他好文 时间:
2019-12-30 09:22:36
阅读次数:
75
序列式容器(Sequence Container):Array数组、Vector向量、Deque双队列、List链表、Forward-List单向链表 关联式容器(Associative Containers):Set、Multiset、Map、Multimap 无序容器(Unordered Con ...
分类:
编程语言 时间:
2019-12-29 18:28:15
阅读次数:
63
title: 概率密度估计介绍 tags: 概率密度,密度估计 grammar_cjkRuby: true grammar_flow: true grammar_sequence: true 在学概率论时,常常会看到各种稀奇古怪的名字,有的书上只介绍了该如何求解,但是从不介绍为什么这么叫以及有什么用 ...
分类:
其他好文 时间:
2019-12-29 11:02:54
阅读次数:
89
连接Phoenix出现异常SYSTEM.CATALOG。 进入/bin/ hbase zkcli ,或者进入zk的客户端:[hadoop@hadoop001 zookeeper-3.4.5-cdh5.7.0]$ cd bin[hadoop@hadoop001 bin]$ ./zkCli.sh 如果有 ...
分类:
其他好文 时间:
2019-12-28 20:43:09
阅读次数:
330
共享对象想要安全发布,主要有两种方法,一种是额外同步的方法,另外则是将对象做为不可变对象。当满足一下条件时,对象才是不可变的: 对象创建以后其状态就不能修改 对象所有的域都是final类型 对象正确创建(在创建对象期间,this引用没有逸出) The class must be declared a ...
分类:
其他好文 时间:
2019-12-28 11:32:40
阅读次数:
101
引用: https://www.imdb.com/title/tt5074352/reviews?ref_=tt_urv This is AAMIR KHAN's by far the best one.Finest casting and terrific acting by all. umash ...
分类:
其他好文 时间:
2019-12-27 23:56:11
阅读次数:
135
在 mysql 中,实现 id 自增的方式是依靠加一个 auto_increment 标志,而在 pgsql 中,id 自增是通过序列 SEQUENCE。 创建表时设置自增序列为: CREATE TABLE "config" ( "id" int4 NOT NULL DEFAULT nextval( ...
分类:
数据库 时间:
2019-12-27 11:43:37
阅读次数:
479
1007 Maximum Subsequence Sum (25分) Given a sequence of K integers { N?1??, N?2??, ..., N?K?? }. A continuous subsequence is defined to be { N?i??, N?i ...
分类:
其他好文 时间:
2019-12-26 17:53:37
阅读次数:
90