使用设置git config --global user.name "Your Name"git config --global user.email "Your E-Mail"git config --global core.editor vimgit config --global merge....
分类:
其他好文 时间:
2015-02-10 21:39:13
阅读次数:
196
Merge k sorted
linked lists and return it as one sorted list. Analyze and describe its complexity.
题意:将k个已经排好序的链表合并成一个
思路:用到优先队列比较简单。
/**
* Definition for singly-linked list.
* struct ListNod...
分类:
其他好文 时间:
2015-02-10 16:47:11
阅读次数:
124
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 lists.
题意:将两个有序的链表合并成一个链表
思路:每次比较链表头就行了,把比较小的插入新的链表中
/**
...
分类:
其他好文 时间:
2015-02-10 15:19:37
阅读次数:
132
Mergeksorted linked lists and return it as one sorted list. Analyze and describe its complexity./** * Definition for singly-linked list. * struct List...
分类:
其他好文 时间:
2015-02-10 15:08:02
阅读次数:
148
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 lists./** * Def...
分类:
其他好文 时间:
2015-02-10 14:55:46
阅读次数:
127
update语句改写成merge into有时会提高运行速度看两个案例1.根据业务将两个嵌套子查询改写成max,速度有3min提升到3s UPDATE OPER_792.LL_SCB_YDKB_20120730 A SET A.DCP = (SELECT B.PROD_OFFER...
分类:
其他好文 时间:
2015-02-10 11:07:19
阅读次数:
213
Merge two sorted linked lists and return it as a new list. The new listshould be made by splicing together the nodes of the first two lists.
HideTags
Linked List
#pragma once
#include
usin...
分类:
其他好文 时间:
2015-02-10 09:19:48
阅读次数:
179
1.火柴棒等式 1 #include 2 #include 3 using namespace std; 4 5 const int match[10]={6,2,5,5,4,5,6,3,7,6}; 6 7 int n; 8 9 int merge(int x){10 int su...
分类:
其他好文 时间:
2015-02-09 21:41:01
阅读次数:
237
暴强的命令行git提交历史记录查询
虽然会一些git命令行的基本操作,但是偶尔不得不借助一些GUI的工具(SourceTree etc.)来查看git提交的history line,这样可以清楚地看到整个project的提交脉络(包括branch,tag,一些merge/rebase记录等)。
偶然间,在github上看到关于git的一条命令:
git log --oneline -...
分类:
其他好文 时间:
2015-02-09 18:32:46
阅读次数:
143
There are two sorted arrays A and B of size m and n respectively. Find the median of the two sorted arrays. The overall run time complexity should be O(log (m+n)).思路分析:这题容易想到O(m+n)的解法,就是先Merge两个数组,然后返...
分类:
其他好文 时间:
2015-02-09 16:06:53
阅读次数:
106