win+x 以管理员帐号登录系统,进入到cmd dos命令窗口 打开开始菜单的运行选项,输入cmd(或者直接在开始菜单的搜索栏搜索cmd), C:\Users\Administrator>bcdedit /copy {default} /d "win8专业版 without Hyper-v" 已将该...
分类:
其他好文 时间:
2014-06-28 15:23:52
阅读次数:
307
Given a linked list, determine if it has a cycle in it.Follow up:Can you solve it without using extra space?Analysis: typical Runner Technique. 一次过 1 ...
分类:
其他好文 时间:
2014-06-28 13:44:51
阅读次数:
164
Given a linked list, return the node where the cycle begins. If there is no cycle, return null.Follow up:Can you solve it without using extra space?一次...
分类:
其他好文 时间:
2014-06-28 13:38:14
阅读次数:
171
题目:Recover Binary Search TreeTwo elements of a binary search tree (BST) are swapped by mistake.Recover the tree without changing its structure.Note:A ...
分类:
其他好文 时间:
2014-06-28 10:26:38
阅读次数:
253
## 机器学习的定义-------- Arthur Samuel (1959). Machine Learning: Field of study that gives computers the ability to learn without being explicitly programme...
分类:
其他好文 时间:
2014-06-25 20:48:57
阅读次数:
337
Determine whether an integer is a palindrome. Do this without extra space.
思路:若使用【Leetcode】Reverse
Integer 的方法,判断反转后的整数是否与原整数相同,则可能出现溢出情况;又因为题目要求不适用额外空间,可以之间对比整数第一个与最后一个数的值,再依次类推。
class Solution {...
分类:
其他好文 时间:
2014-06-22 20:43:56
阅读次数:
187
直接上代码:
1. 第一种情况, 如果没有select{}, main 主线程不会等待coroutine运行,导致coroutine得不到机会运行。
You are requesting eventual scheduling (using the two go statements)
of two goroutines and then you exit main without g...
分类:
其他好文 时间:
2014-06-22 19:56:27
阅读次数:
261
今天是2014-06-18,在复制数据的时候出现如下错误:
RMAN-05537: DUPLICATE without TARGET connection when auxiliary instance is started with spfile cannot use SPFILE clause
操作过程如下:
[oracle@dg1 dbs]$ rman target sys/root@...
分类:
其他好文 时间:
2014-06-22 19:13:14
阅读次数:
306
Divide two integers without using multiplication, division and mod operator.Analysis: 我自己用binary search做老是出TLE的错误,看了网上思路,有了如下方法:long did = dividend, l...
分类:
其他好文 时间:
2014-06-21 16:06:48
阅读次数:
144
The diesel engine crusher is mainly used in some place that don‘t have enough electricity or without electricity. They can do the middle or fine crush...
分类:
其他好文 时间:
2014-06-20 19:19:33
阅读次数:
248