基础算法
文章平均质量分 51
tshooting
努力打工,好好生活
展开
-
快素幂取模
列出做题遇到的3种方式的快速幂取模1:用位运算a^b 如果b的二进制形式为 10111a^b = a^(1*2^4 + 0*2^3 + 1*2^2 + 1*2^1 + 1*2^0);因为:2^2 = 2 * (2^1);所以:a^(2^2) = (a^(2^1))*(a^(2^1));因为:2^3 = 2 * (2^(3-1)) = 2 * (2^2);所以:a^(2^3) = (a^(2^2))...原创 2018-03-28 09:34:38 · 152 阅读 · 0 评论 -
Subsequence 尺取法
A sequence of N positive integers (10 < N < 100 000), each of them less than or equal 10000, and a positive integer S (S < 100 000 000) are given. Write a program to find the minimal length o...翻译 2018-05-17 15:13:20 · 148 阅读 · 0 评论 -
内容
requests 库:1:requests库的7个主要方法requests.request():构造一个请求,支撑以下各方法的基础方法requests.get():获取HTML网页的主要方法,对应于HTTP的GETrequests.head():获取HTML网页头信息的方法,对应于HTTP的HEADrequests.post():向HTML网页提交POST请求的方法,对应于HTTP的PO...原创 2018-08-29 22:22:25 · 217 阅读 · 0 评论