安装setuptools的时候,不能再注册表中识别出来python2.7在网上找了方法,仅作笔记,供下次使用方法:新建一个register.py
文件,把一下代码贴进去,保存(G盘) 1 # 2 # script to register Python 2.0 or later for use wit...
分类:
编程语言 时间:
2014-06-29 14:45:14
阅读次数:
312
1 #include 2 #include 3 using namespace std; 4
const int Max = 100000; 5 int num[Max]; 6 int find_[Max]; 7 bool found[Max]; 8
int pos[Max] = { 9 ...
分类:
其他好文 时间:
2014-06-07 03:49:29
阅读次数:
250
原题地址:https://oj.leetcode.com/problems/subsets-ii/题意:Given
a collection of integers that might contain duplicates,S, return all possible
subsets.Note:E...
分类:
编程语言 时间:
2014-05-29 19:10:53
阅读次数:
278
手头有一块6410开发板,已经有别人提供的uboot代码,但是在检测dm9000时显示下面的输出:Net: No ethernet
found.当然其他网络命令例如ping等都执行失败。但是在(include/configs/*6410*.h)下添加一行(增加debug)信息:#define
D.....
分类:
其他好文 时间:
2014-05-28 18:54:24
阅读次数:
483
保证联网的情况下,直接参照http://lnmp.org/install.html进行安装,以下花括号内为原文引用:{1、使用putty或类似的SSH工具登陆VPS或服务器;登陆后运行:screen
-S lnmp如果提示screen: command not found 命令不存在可以执行:yum...
分类:
其他好文 时间:
2014-05-26 08:52:19
阅读次数:
232
Remove Duplicates from Sorted Array II
分类:
其他好文 时间:
2014-05-26 01:20:51
阅读次数:
159
JavaWeb: 报错信息The superclass
"javax.servlet.http.HttpServlet" was not found on the Java Build
Path好久不写Jsp,今天建立了一个Javaweb工程,并在eclipse中配置了Web容器Tomcat。原本开...
分类:
编程语言 时间:
2014-05-25 23:37:34
阅读次数:
284
建立了一个Javaweb工程,并在eclipse中配置了Web容器Tomcat。新建的jsp页面,添加一个简单的Java类。可是,JSP页面顶端出现“红色”的报错信息:The
superclass "javax.servlet.http.HttpServlet" was not found on t...
分类:
编程语言 时间:
2014-05-25 23:24:16
阅读次数:
328
Remove Duplicates from Sorted ArrayGiven a
sorted array, remove the duplicates in place such that each element appear only
once and return the new len...
分类:
其他好文 时间:
2014-05-25 19:08:31
阅读次数:
203
题目:一个有序数组,要求保证数组中的每个元素不能超过2个。 输入:A =[1,1,1,2,2,3]
输出:length =5, and A is now[1,1,2,2,3]思路:双指针
。有些绕,不过理清了后,思路还是很直接明朗的。1、两个指针:p和help。初始化时同时指向数组头。变量cur.....
分类:
其他好文 时间:
2014-05-25 16:15:16
阅读次数:
285