摘要: 1. 先执行以下命令 2. 然后执行 安装成功 阅读全文
posted @ 2017-05-29 16:13 冯兴伟 阅读(371) 评论(0) 推荐(0) 编辑
摘要: https://developer.nvidia.com/compute/cuda/8.0/prod/local_installers/cuda_8.0.44_win10-exe 阅读全文
posted @ 2017-05-29 02:02 冯兴伟 阅读(1940) 评论(0) 推荐(0) 编辑
摘要: 1. 安装python 根据你的需求下载python安装包,安装python(本文基于python27)https://www.python.org/downloads/ 下载完安装默认安装路径,方便后续 2. 安装pywin32 版本号:选中前两个任一个打开 博主的python是32位,所以选中下 阅读全文
posted @ 2017-05-26 23:03 冯兴伟 阅读(1493) 评论(0) 推荐(0) 编辑
摘要: 今晚要写搜索引擎作业,搭scrapy环境,遇到了下面问题: windows下安装pywin32报错:close failed in file object destructor:sys.excepthook is missing lost sys.stderr 解决方法: 1.右键管理员身份运行cm 阅读全文
posted @ 2017-05-26 22:04 冯兴伟 阅读(2346) 评论(0) 推荐(0) 编辑
摘要: 文章大部分来源于:http://www.cnblogs.com/zhaoyl/archive/2012/07/07/2580749.html 作为笔记留存博客备忘。 exec和source都属于bash内部命令(builtins commands),在bash下输入man exec或man sour 阅读全文
posted @ 2017-05-20 21:08 冯兴伟 阅读(1572) 评论(0) 推荐(0) 编辑
摘要: 1.重启系统,按住shift键进入grub菜单; 2.选择recovery mode恢复模式; 3.在recovery menu中选择root drop to root shell prompt; 4.在命令行中输入passwd 用户名; 如果出现successful的字样说明修改成功; 如果出现: 阅读全文
posted @ 2017-05-19 23:19 冯兴伟 阅读(5043) 评论(0) 推荐(2) 编辑
摘要: 在此注明,本文转载于:http://z00w00.blog.51cto.com/515114/1031287 一、正向代理(Forward Proxy) 一般情况下,如果没有特别说明,代理技术默认说的是正向代理技术。关于正向代理的概念如下: 正向代理(forward)是一个位于客户端【用户A】和原始 阅读全文
posted @ 2017-04-30 21:41 冯兴伟 阅读(705) 评论(0) 推荐(0) 编辑
摘要: Outlook 2010打开没反应,任务栏图标显示如下: 解决方法: 按下Windows+R键,输入regedit: 按回车; 请在注册表编辑器中定位到以下键值,重命名以下4项(比如将outlook重命名为outlookold)HKEY_CURRENT_USER\Software\Microsoft 阅读全文
posted @ 2017-04-27 11:30 冯兴伟 阅读(1346) 评论(0) 推荐(0) 编辑
摘要: #206. Reverse Linked List Reverse a singly linked list. 阅读全文
posted @ 2016-12-18 22:31 冯兴伟 阅读(192) 评论(0) 推荐(0) 编辑
摘要: #83. Remove Duplicates from Sorted List Given a sorted linked list, delete all duplicates such that each element appear only once. For example, Given 阅读全文
posted @ 2016-12-18 22:01 冯兴伟 阅读(133) 评论(0) 推荐(0) 编辑
摘要: #24. Swap Nodes in Pairs Given a linked list, swap every two adjacent nodes and return its head. For example, Given 1->2->3->4, you should return the 阅读全文
posted @ 2016-12-18 21:55 冯兴伟 阅读(182) 评论(0) 推荐(0) 编辑
摘要: #2. Add Two Numbers You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nod 阅读全文
posted @ 2016-12-18 21:31 冯兴伟 阅读(286) 评论(0) 推荐(0) 编辑
摘要: #299. Bulls and Cows You are playing the following Bulls and Cows game with your friend: You write down a number and ask your friend to guess what the 阅读全文
posted @ 2016-12-18 18:06 冯兴伟 阅读(367) 评论(0) 推荐(0) 编辑
摘要: #268. Missing Number Given an array containing n distinct numbers taken from 0, 1, 2, ..., n, find the one that is missing from the array. For example 阅读全文
posted @ 2016-12-16 16:29 冯兴伟 阅读(134) 评论(0) 推荐(0) 编辑
摘要: #7. Reverse Integer Reverse digits of an integer. Example1: x = 123, return 321Example2: x = -123, return -321 题解:暴力做,注意边界: 阅读全文
posted @ 2016-12-16 02:16 冯兴伟 阅读(183) 评论(0) 推荐(0) 编辑