给你一个包含 n 个整数的数组 nums,判断 nums 中是否存在三个元素 a,b,c ,使得 a + b + c = 0 ?请你找出所有满足条件且不重复的三元组。 注意:答案中不可以包含重复的三元组。 class Solution: def threeSum(self, nums: List[i ...
分类:
其他好文 时间:
2020-07-10 09:45:17
阅读次数:
54
tar -zxf mysql-xxx.gz cp -r mysql-xx /usr/local/mysql cd /usr/local/mysql/bin mkdir -pv /data/mysql/{log,run,tmp,data} mkdir -pv /data/mysql/log/{iblo ...
分类:
数据库 时间:
2020-07-09 09:28:53
阅读次数:
70
<%'//获取汉字的首字母 ,ANSII编码function getpychar(char) dim tmpp:tmpp=65536+asc(char) if(tmpp>=45217 and tmpp<=45252) then getpychar= "A" elseif(tmpp>=45253 an ...
分类:
Web程序 时间:
2020-07-08 23:19:35
阅读次数:
139
概念 CRC(Cyclic redundancy check),循环冗余校验 CRC校验是用于检测一帧数据发送是否正确,只有确认对错的作用,并没有纠错的能力。 还有一点就是CRC校验通过了,并不代表这个数据肯定就是正确的,只能说尽可能减少出错的概率,当然 CRC错了那么这个数据肯定是不正确的。 而这 ...
分类:
其他好文 时间:
2020-07-08 23:00:32
阅读次数:
83
1.高精度加法 string add(string a, string b)//只限两个非负整数相加{ string ans; int nb[100010] = {0}; int na[100010] = {0}; int la = a.size(), lb = b.size(); for (int ...
分类:
编程语言 时间:
2020-07-08 18:18:17
阅读次数:
108
【题目描述】 给定一个单链表,把所有的奇数节点和偶数节点分别排在一起。请注意,这里的奇数节点和偶数节点指的是节点编号的奇偶性,而不是节点的值的奇偶性。 请尝试使用原地算法完成。你的算法的空间复杂度应为 O(1),时间复杂度应为 O(nodes),nodes 为节点总数。 示例 1: 输入: 1->2 ...
分类:
其他好文 时间:
2020-07-08 13:44:21
阅读次数:
63
问题出在了我多次格式化导致namenode启动不了这时候就需要删除原目录,即core-site.xml下配置的hadoop.tmp.dir所指向的目录,重新建立配置的空目录 格式化namdenode,hadoop namenode -format再重新运行start-all.sh启动成功后再jps测 ...
分类:
其他好文 时间:
2020-07-08 13:26:55
阅读次数:
65
1. 自己写for循环 从array里去掉$tmp这个元素的值 <?php $tmp = '324'; $arr = array( '0' => '321', '1' => '322', '2' => '323', '3' => '324', '4' => '325', '5' => '326', ...
分类:
编程语言 时间:
2020-07-07 13:20:47
阅读次数:
61
创建Zip文件。zip –r myzipfile.zip ./folder_to_zip解压Zip文件。unzip myzipfile.zip –d /tmp--------------创建Tar文件。tar -cvf /tmp/b.tar /tmp/tozip解压Tar文件。tar -xvf my... ...
分类:
系统相关 时间:
2020-07-07 13:04:19
阅读次数:
77
(一) [client]port = 3306socket = /tmp/mysql.sock [mysqld]port = 3306socket = /tmp/mysql.sock basedir = /usr/local/mysqldatadir = /data/mysqlpid-file = ...
分类:
数据库 时间:
2020-07-06 17:52:22
阅读次数:
57