---
name: CFRELEASE02
director_uuid: fdd46e30-f2c5-41dc-9662-0976fdac5716
releases:
- name: cf
version: 171
meta:
environment: null
stemcell:
name: bosh-vsphere-esxi-ubuntu
version: 23...
分类:
其他好文 时间:
2014-06-19 10:04:35
阅读次数:
292
客户提交一个dump文件,WinDbg加载时出现大量WARNING,加载对应版本的SOS后执行相应命令提示"SOS does not support the current target architecture"。原因在于使用了64位的任务管理器导出了32位进程的dump文件,下面是两个解决方法:...
分类:
其他好文 时间:
2014-06-15 20:04:30
阅读次数:
463
题目
Given a set of candidate numbers (C) and a target number (T), find all unique combinations in C where the candidate numbers sums
to T.
The same repeated number may be chosen from C un...
分类:
其他好文 时间:
2014-06-15 20:00:18
阅读次数:
185
题目
Given a collection of candidate numbers (C) and a target number (T), find all unique combinations in C where the candidate numbers
sums to T.
Each number in C may only be used once in...
分类:
其他好文 时间:
2014-06-15 19:24:21
阅读次数:
229
题目
Given a sorted array and a target value, return the index if the target is found. If not, return the index where it would be if it were inserted in order.
You may assume no duplicates i...
分类:
其他好文 时间:
2014-06-15 17:27:16
阅读次数:
251
题目
Given a sorted array of integers, find the starting and ending position of a given target value.
Your algorithm's runtime complexity must be in the order of O(log n).
If the target i...
分类:
其他好文 时间:
2014-06-15 16:53:32
阅读次数:
177
题目
Given a sorted array of integers, find the starting and ending position of a given target value.
解题思路:
查找一个数出现的范围,给一个排好序的数组和一个数,找出这个数在数组中出现的范围。
这个题直接使用一次遍历就可以得到结果,这样的时间复杂度为O(n)。但是对于有序数组我们一般可以使用二分查找可以得到更好的O(logn)的时间复杂度。我们可以使用二分查找找到这个数第一次出现的位置和这个数最后一次出现的位...
分类:
其他好文 时间:
2014-06-15 16:19:16
阅读次数:
237
1. Esxi主机上的虚拟机迁移只能是低----->高,或版本一样的才能进行迁移
【如Esxi5.1---->Esxi5.5】ok, 而Esxi5.5----->Esxi5.1
no;2.升级完成后,需要重启venter机器,若则会出现:pbm.fault.PBMFault.summary 错误;3...
分类:
其他好文 时间:
2014-06-13 17:47:38
阅读次数:
676
class Solution {private: int getDirection(int
A[], int idx, int target, bool isDefaultBack) { int r = A[idx] - target; if (r
== 0) { ...
分类:
其他好文 时间:
2014-06-13 17:37:20
阅读次数:
221
在用eclipse操作时,经常用到svn的与资源同步这个操作,但是打开的时候会有很多生成的class文件,其实这些并不需要提交的,因为svn原则上是用来管理源代码的。每次资源同步时看到很多class文件,很不方便,那怎么在svn提交代码时忽略这些呢。请按照下面的操作(分eclipse
svn插件下的...
分类:
其他好文 时间:
2014-06-13 16:40:52
阅读次数:
361