默认情况下,我们用yum list 或者 yum install 的时候,yum会默认选择最新的版本。 如果我们需要安装指定版本的某个软件包,以使之能够和我们现有环境的软件包版本匹配,那么就需要用到showduplicates 使用 参数列出所有版本 查看docker ce: 查看docker ce ...
分类:
其他好文 时间:
2018-09-25 16:09:20
阅读次数:
3333
78. Subsets Given a set of distinct integers, nums, return all possible subsets (the power set). Note: The solution set must not contain duplicate sub ...
分类:
其他好文 时间:
2018-09-22 14:28:49
阅读次数:
178
之前没用过这个操作,甚至没见过……最近接触到,而且还挺有用。 作用:若 KEY 不重复,则插入记录;否则更新记录。 单条操作: 批量操作: 参考链接: 1. https://blog.csdn.net/BuptZhengChaoJie/article/details/50992923 2. http ...
分类:
数据库 时间:
2018-09-19 19:44:27
阅读次数:
167
数据类型(2) 字符类型 #官网:https://dev.mysql.com/doc/refman/5.7/en/char.html #注意:char和varchar括号内的参数指的都是字符的长度 #char类型:定长,简单粗暴,浪费空间,存取速度快 字符长度范围:0-255(一个中文是一个字符,是 ...
分类:
数据库 时间:
2018-09-18 22:46:18
阅读次数:
206
35. Search Insert Position Description Given a sorted array and a target value, return the index if the target is found. If not, return the index wher ...
分类:
其他好文 时间:
2018-09-18 20:54:30
阅读次数:
154
插入数据的时候 报错,Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLIntegrityConstraintViolationException: Duplicate entry 'xxx-xxx-xxx-xxx-xxx' for key 'AA' 1、这段信 ...
分类:
其他好文 时间:
2018-09-18 19:01:02
阅读次数:
219
class Solution { public: int removeDuplicates(vector& nums) { int res = 0; nums.push_back(INT_MAX); //注意末尾的补位 for(int i=0;i < nums.size()-1;i++){ if(n... ...
分类:
其他好文 时间:
2018-09-18 11:14:55
阅读次数:
117
217. Contains Duplicate 后面3个题都是限制在1~n的 287. Find the Duplicate Number http://www.cnblogs.com/grandyang/p/4843654.html https://blog.csdn.net/xudli/arti ...
分类:
其他好文 时间:
2018-09-16 19:42:55
阅读次数:
131
1 class Solution { 2 public ListNode deleteDuplicates(ListNode head) { 3 if(head == null || head.next == null) return head; 4 ListNode node1 = head; 5... ...
分类:
其他好文 时间:
2018-09-16 15:34:41
阅读次数:
98
这个题有很多种做法:https://leetcode.com/problems/contains-duplicate/discuss/61110/C++-solutions-(sorting-maps-and-sets). 还有Contains Duplicate II Contains Dupli ...
分类:
其他好文 时间:
2018-09-15 19:20:59
阅读次数:
182