- 博客(13)
- 收藏
- 关注
转载 LeetCode 292.Nim Game
题意:You are playing the following Nim Game with your friend: There is a heap of stones on the table, each time one of you take turns to remove 1 to 3 stones. The one who removes the last stone w...
2016-08-06 16:49:00 117
转载 LeetCode 344.Reverse String
题意:Write a function that takes a string as input and returns the string reversed.Example:Given s = "hello", return "olleh".实现字符串的反转。刚开始时,我是直接string fan,然后给...
2016-07-30 23:08:00 1293
转载 LeetCode 1.Two Sum
leetcode的第一题,two sum:Given an array of integers, returnindicesof the two numbers such that they add up to a specific target.You may assume that each input would haveexactlyone solution....
2016-07-19 00:31:00 132
转载 Post方式与Get方式比较
在学习爬虫的过程了解到了在访问服务器时,有两种请求的方式,Post方式和Get方式Post方式:向指定的资源提交要被处理的数据Get方式:从指定的资源请求数据。GET 方法请注意,查询字符串(名称/值对)是在 GET 请求的 URL 中发送的:/test/demo_form.asp?name1=value1&name2=value2有关 GET 请...
2016-07-16 17:42:00 139
转载 python教程---爬虫入门教程一
此次教程使用的python版本为2.7!!!在刚上大学之时,总是在网上看到什么爬虫,因为当时还在学习c++,没有时机学习python,更没有去学习爬虫了,而趁着这次工程实训学习了基本的python的使用,于是有提起了学习爬虫的兴致,也写下了这个系列的博客,以记录自己的积累下面进入正题:爬虫是什么?网络爬虫(又被称为网页蜘蛛,网络机器人,在FOAF社区中间,更经常的称...
2016-07-08 13:59:00 166
转载 python教程---新手应该知道的几个小技巧
新手在coding时经常不了解一些技巧,从而代码会很长,很复杂,下面就将介绍几个新手应该知道的几个小技巧来简化代码。1.反转字符串>>> a = "codementor">>> print "Reverse is",a[::-1]Reverse is rotnemedoc2.转置矩阵>>> mat...
2016-07-05 18:31:00 91
转载 python教程---python中的正则表达式学习
正则表达式(regular expression)描述了一种字符串匹配的模式,可以用来检查一个串是否含有某种子串、将匹配的子串做替换或者从某个串中取出符合某个条件的子串等。python中的正则包含在一个名为re的模块中,也就是在用到正则表达式之前,都要先import re参考博客:http://www.runoob.com/regexp/regexp-syntax.html...
2016-07-05 17:58:00 103
转载 python教程---Windows下python环境搭建
1.下载安装首先需要下载python下载地址:https://www.python.org/downloads/有两个版本的python,一个是python2.7另一个是python3.5,至于下载哪一个版本则是基于学习的教程用到了那一个,那么就使用那一个之后就是进行安装,安装路径可以自己修改,不是必须安装在c盘2.添加环境变量安装完之后修改环境变量,在控制面...
2016-07-05 10:48:00 118
转载 leetcode 371. Sum of Two Integers
Calculate the sum of two integersaandb, but you arenot allowedto use the operator+and-.Example:Givena= 1 andb= 2, return 3.利用位运算,这里用到了一个半加法的思想, 即两位单独的位相加其结果可以用异或得到, 进位可以用与得到.首...
2016-06-30 19:28:00 98
转载 leetcode 57.Insert Interval
题意:Given a set ofnon-overlappingintervals, insert a new interval into the intervals (merge if necessary).You may assume that the intervals were initially sorted according to their start tim...
2016-06-30 18:37:00 89
转载 Ardunio使用教程——初始安装与小车运行
Arduino是一款便捷灵活、方便上手的开源电子原型平台。包含硬件(各种型号的Arduino板)和软件(Arduino IDE)。由一个欧洲开发团队于2005年冬季开发。其成员包括Massimo Banzi、David Cuartielles、Tom Igoe、Gianluca Martino、David Mellis和Nicholas Zambetti。工程实训完成小车使用的是Ar...
2016-06-22 19:20:00 270
转载 latex使用学习
ctex下载地址:http://www.ctex.org/CTeXDownload转载于:https://www.cnblogs.com/Attenton/p/5597258.html
2016-06-19 00:19:00 85
转载 sublime text3 的一些简单使用插件介绍
sublime text3是使用十分广泛的代码编辑器,这里主要介绍自己在使用sublime text3的一些经验最开始的肯定是下载sublime text3了下载地址:https://www.sublimetext.com/3原作者在一年之后又开始更新sublime text了。下载安装好后,就是添加插件。1.package control首选的插件就是pack...
2016-06-18 20:51:00 99
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人