Mybatis Plus Introduce Simple:MyBatis Plus is an powerful enhanced tool for MyBatis. it provides many efficient operations for MyBatis. and you can se ...
分类:
其他好文 时间:
2020-04-05 13:18:30
阅读次数:
87
要求 在链表中删除值为val的所有节点 示例 如 1->2->3->4->5->6->NULL,要求删除值为6的节点 返回1->2->3->4->5->NULL 思路 删除一般元素(包括最后一个元素) 删除第一个元素 实现 常规思路 1 #include <iostream> 2 using nam ...
分类:
其他好文 时间:
2020-04-05 09:55:01
阅读次数:
63
Description Given a string which contains only lowercase letters, remove duplicate letters so that every letter appears once and only once. You must m ...
分类:
编程语言 时间:
2020-04-04 20:54:05
阅读次数:
76
#检查磁盘使用率超过90%,并且后台进程没有rman在跑,就运行 /data/script/del_dg_arch.sh 脚本清理归档 a=`df -m /data |tail -n 1|awk '{print int($5)}'` b=`ps -ef|grep rman|grep -v grep| ...
分类:
系统相关 时间:
2020-04-01 10:37:22
阅读次数:
80
IntegrityError: (pymysql.err.IntegrityError) (1062, "Duplicate entry '000001.SZ-2018-07-02' for key 'PRIMARY'")[SQL: INSERT INTO stock_daily_basic (ts ...
分类:
数据库 时间:
2020-04-01 10:33:38
阅读次数:
358
题目 Given an array of integers, find out whether there are two distinct indices i and j in the array such that the absolute difference between and is a ...
分类:
其他好文 时间:
2020-03-31 01:13:11
阅读次数:
88
| flag | 说明 | | | | | last | nginx重定向location区段,能够直接返回200状态码 | | break | nginx重定向资源路径,能够直接返回200状态码 | | redirect | 返回302临时重定向 | | permanent | 返回301永久重定 ...
分类:
其他好文 时间:
2020-03-30 19:26:21
阅读次数:
77
Given an array of integers and an integer k, find out whether there are two distinct indices i and j in the array such that nums[i] = nums[j] and the ...
分类:
其他好文 时间:
2020-03-29 21:16:05
阅读次数:
58
题目 Given an array of integers, find if the array contains any duplicates. Your function should return true if any value appears at least twice in the ...
分类:
其他好文 时间:
2020-03-29 19:40:21
阅读次数:
65
MySQL :: MySQL 8.0 Reference Manual :: 4.5.4 mysqldump — A Database Backup Program https://dev.mysql.com/doc/refman/8.0/en/mysqldump.html#mysqldump-pe ...
分类:
数据库 时间:
2020-03-28 23:49:31
阅读次数:
199