- 博客(3)
- 收藏
- 关注
原创 如何用python爬取豆瓣图书 Top 250
下面就是代码:import requestsimport reimport sysfrom bs4 import BeautifulSouptot_Book=[]tot_other=[]tot_con=[]f = open('Book.csv', 'w', encoding='utf-8')f.writelines('书名'+','+'其他信息'+'\n')def...
2019-04-01 17:51:18 321
原创 最大正向匹配
最大正向匹配 Time Limit:1000MS Memory Limit:65536KTotal Submit:118 Accepted:75Description给定2个短字符串str1,str2,在一个长字符串中找出以str1开头并且以str2结尾的最长字符串。Input第1行为str1, 表是开头字符串第2行为str2
2017-03-19 22:30:33 432
原创 动态规划之带宽与价格
#include#include#includeusing namespace std;#define inf 0x3f3f3f3fint dp[10000][10000];int min(int a,int b){ if(a>=b) return b; else return a;}int main(){ int t,n; cin>>t; while(t
2017-03-19 22:22:45 265 1
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人