直接将14.04镜像直接放到flash driver 中
然后在bios设置flash driver 优先启动
然后格出一块盘给ubuntu 安装使用
按操作要求一路点下去即可,记得选windows和linux共存选项。
这样ubuntu就会安装到你格式化后的盘中了。...
分类:
其他好文 时间:
2014-07-28 16:29:03
阅读次数:
237
安装node错误:
wscript:329: error: Could not autodetect OpenSSL support. Make sure OpenSSL development packages are installed. Use configure --without-ssl to disable this message.
说明没有安装 openssl-de...
分类:
其他好文 时间:
2014-07-28 16:06:03
阅读次数:
234
第一道Kruskal算法题#include #include #include using namespace std;#define max 505int f[max],maxw;struct edge{ int st,en,w;}ed[max*max/2];int find(int k){ if...
分类:
其他好文 时间:
2014-07-28 15:39:43
阅读次数:
181
Your task is to write a program that can decide whether you can find an arithmetic expression consisting of five given numbers (1 {1,2,3,4,5} is a bij...
分类:
其他好文 时间:
2014-07-28 15:33:03
阅读次数:
230
使用mkisofs遇到错误:genisoimage: Uh oh, I cant find the boot catalog directory 'beini/boot/isolinux'!使用的命令是sudo mkisofs -o boot.iso -r -J --no-emul-boot --b...
分类:
其他好文 时间:
2014-07-28 15:18:33
阅读次数:
318
1、子类化QDialog第一个例子是完全使用C++编写的Find对话框。finddialog.h: 1 #ifndef FINDDIALOG_H 2 #define FINDDIALOG_H 3 4 #include 5 6 class QCheckBox; 7 class QLabel; 8...
分类:
其他好文 时间:
2014-07-28 15:00:13
阅读次数:
419
有一个数组(非递减),旋转了不知道多少个位,在该数组中找一个数的下标。写出代码(用C/C++或者java)并分析时间空间复杂度,考虑效率(很重要)。eg:数组 [6,7,1,2,3,4,4] 找3,返回4;函数原型C/C++:int find(int * a,int n,int count) cou...
分类:
移动开发 时间:
2014-07-28 14:57:53
阅读次数:
229
题目:Given a string S and a string T, find the minimum window in S which will contain all the characters in T in complexity O(n).For example,S = "ADOBE....
分类:
编程语言 时间:
2014-07-28 14:42:23
阅读次数:
264
题目:You are given a string, S, and a list of words, L, that are all of the same length. Find all starting indices of substring(s) in S that is a conca....
分类:
编程语言 时间:
2014-07-28 14:39:03
阅读次数:
1117
在做uva11300时,遇到了n 10 #include 11 #include 12 #include 13 #include 14 #include 15 #include 16 #include 17 18 using namespace std;19 20 21 int find_mid(i...
分类:
其他好文 时间:
2014-07-28 14:30:33
阅读次数:
186