99. 恢复二叉搜索树 题目来源:力扣(LeetCode)https://leetcode-cn.com/problems/recover-binary-search-tree 题目 二叉搜索树中的两个节点被错误地交换。 请在不改变其结构的情况下,恢复这棵树。 示例 1: 输入: [1,3,null ...
分类:
编程语言 时间:
2020-08-08 21:20:59
阅读次数:
83
A real case which is related to Automatic Delta Handling I use a ticket which I am struggling with recently to start this blog. It took me almost the ...
分类:
Web程序 时间:
2020-08-06 13:09:48
阅读次数:
101
当前访问mysql的账号root缺少系统权限,执行以下sql语句即可 GRANT XA_RECOVER_ADMIN ON *.* TO root@'%' ; 查看mysql当前访问用户的权限 show grants for 用户名@'主机地址(%代表任意ip)' 参考:https://blog.cs ...
分类:
数据库 时间:
2020-07-30 18:19:15
阅读次数:
180
1 hadoop集群安装 https://blog.csdn.net/shshheyi/article/details/84893371 1.1 修改主机名 [root@localhost ~]# vim /etc/hosts # 三台机器都需要操作 192.168.28.131 master 19 ...
分类:
其他好文 时间:
2020-07-29 00:41:18
阅读次数:
111
CentOS6网卡名称Centos6网卡接口命名方式:以太网:eth[0,1,2,...]PPP:ppp[0,1,2,…]网络接口识别并命名相关的udev配置文件:/etc/udev/rules.d/70-persistent-net.rules此文件主要是记录网卡的信息,这个文件在虚拟机克隆的时候比较有用处,一般说来,虚拟机克隆,相应也会把网卡物理地址克隆过来,所以需要到这个文件里把相应的网卡记
分类:
其他好文 时间:
2020-07-28 00:07:03
阅读次数:
104
sqlplus /nolog connect / as sysdba select * from v$flash_recovery_area_usage show parameter db_recover alter system set db_recovery_file_dest_size=50G ...
分类:
其他好文 时间:
2020-07-20 10:14:11
阅读次数:
88
链接:https://leetcode-cn.com/problems/recover-binary-search-tree/ 代码 /** * Definition for a binary tree node. * struct TreeNode { * int val; * TreeNode ...
分类:
其他好文 时间:
2020-07-19 11:36:41
阅读次数:
70
通过归档日志定期增量同步数据实验: 一、再次实验从归档持续同步的方式:1.修改主库,开启归档,将日志归档到从库:archive_mode = onarchive_command = 'ssh 192.168.5.133 test ! -f /home/kingbase/test_fy/archive ...
分类:
数据库 时间:
2020-07-16 21:43:19
阅读次数:
166
Oracle归档日志若不定期清理将占用很大存储空间,在Linux环境下我们可以用shell脚本实现清理(Window下用bat同理)。 1. 查看归档日志存放位置 用oracle用户登录 [oracle@localhost data]$ sqlplus sys/password as sysdba ...
分类:
数据库 时间:
2020-07-15 01:09:51
阅读次数:
117