https://www.cnblogs.com/tocy/p/git-rebase-merge-commit.html https://blog.csdn.net/zhezhebie/article/details/79420752 https://www.cnblogs.com/dmir/p/50... ...
分类:
其他好文 时间:
2018-09-25 21:51:32
阅读次数:
157
一、词义解析 UDF(User-Defined-Function) 一进一出 UDAF(User- Defined Aggregation Funcation) 多进一出 (聚合函数,MR) UDTF(User-Defined Table-Generating Functions) 一进多出(生成多 ...
分类:
其他好文 时间:
2018-09-23 18:25:08
阅读次数:
185
Merge k sorted linked lists and return it as one sorted list. Analyze and describe its complexity. Example: divide and conquer, like merge sort, use t ...
分类:
其他好文 时间:
2018-09-23 16:31:43
阅读次数:
120
1.当然是先安装Beyond Compare3 (此处省略安装步骤,自行百度) 2.设置difftool git config --global diff.tool bc3 git config --global difftool.bc3.path "/usr/bin/bcompare git co ...
分类:
其他好文 时间:
2018-09-23 11:49:55
阅读次数:
174
Question Q1.Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the first two lis ...
分类:
其他好文 时间:
2018-09-23 11:45:20
阅读次数:
151
题意:合并几个有序链表,使结果也是有序的 题解1:循环遍历这几个链表头,将最小的加入结果链表中 1 class Solution { 2 public: 3 ListNode* mergeKLists(vector<ListNode*>& lists) { 4 ListNode* res = NUL ...
分类:
其他好文 时间:
2018-09-22 21:31:25
阅读次数:
189
1. 先将分支切换到 : master 2. 将其他分支合并到master 分支 : git merge xuzhiwen 3. 将更新提交到远程仓库 : git push origin master 4. 将本地分支与远程分支做关联,并做更新操作 git branch --set-upstream ...
分类:
其他好文 时间:
2018-09-21 23:00:05
阅读次数:
378
通常,合并分支时,如果可能,Git会用Fast forward模式,但这种模式下,删除分支后,会丢掉分支信息。 如果要强制禁用Fast forward模式,Git就会在merge时生产一个新的commit,这样,从分支历史上就可以看出分支信息。 下面我们实战一下--no-ff方式的git merge ...
分类:
其他好文 时间:
2018-09-21 20:26:32
阅读次数:
135
归并排序算法 归并排序:利用分而治之的思想。 归并排序代码 public static void merge(int[] arr, int left, int mid, int right){ int[] temp = new int[right - left + 1]; //新开一个临时数组存放每 ...
分类:
编程语言 时间:
2018-09-21 12:27:20
阅读次数:
158
目标:两台服务器两个oracle数据库 主服务器:192.168.0.1 主数据库:center 目标服务器:192.168.0.2 目标数据库:branch //首先保证两台服务器可以ping通 --1、在主数据库中创建dblink ,branch为dblink名称,用户名和密码写自己的,192. ...
分类:
数据库 时间:
2018-09-20 17:24:14
阅读次数:
194