学习笔记
Ronny_Chan
这个作者很懒,什么都没留下…
展开
-
2017.09.21 学习笔记
今晚要解决一些之前没解决的疑难杂症如果弄得久的话就不打题了Binary search:#include#includeusing namespace std;bool binarySearch(const vector & v, int x){ int h,l,mid; h=v.size(); l=0; while(h>=l) { mid=(h+l)/2; i原创 2017-09-21 22:01:46 · 174 阅读 · 0 评论 -
2017.10.30 学习笔记
主要学习排序Quicksort 快排,采用边搜索边排序的方法,首先设置i=0,j=数组大小-1随后利用递归的方法来继续流程代码:来自百度百科void Qsort(int a[], int low, int high){ if(low >= high) { return; } int first = low; int last原创 2017-10-30 15:06:57 · 174 阅读 · 0 评论 -
1.7~1.8学习笔记
requests.request()构造一个请求,支撑以下各方法的基础方法requests.get()获取HTML网页的主要方法,对应于HTTP的GETrequests.head()获取HTML网页头信息的方法,对应于HTTP的HEADrequests.post()向HTML网页提交POST请求的方法,对应于HTTP的POSTrequests.put()向HTML网页提交PUT请求原创 2018-01-08 23:53:42 · 217 阅读 · 0 评论 -
学习笔记2018.1.9
Beautiful Soup库解析器解析器 使用方法 条件bs4的HTML解析器: BeautifulSoup(mk,’html.parser’) 安装bs4库lxml的HTML解析器: BeautifulSoup(mk,’lxml’) pip install lxmllxml的XML解析器: BeautifulSoup(mk,’xml’) pip install l原创 2018-01-09 14:36:03 · 314 阅读 · 0 评论