题目链接:https://codeforces.com/contest/1265/problem/B 题意 给出大小为 $n$ 的一个排列,问对于每个 $i(1 \le i \le n)$,原排列中是否有一个大小为 $i$ 的连续子排列。 题解 从小到大构造排列,记录当前排列中数的最小下标和最大下标 ...
分类:
其他好文 时间:
2020-06-25 19:16:52
阅读次数:
58
1.九寨沟景点 import asyncio import requests from bs4 import BeautifulSoup base_url = 'https://www.jiuzhai.com/{0}' async def parse_next_html(response): sou ...
分类:
编程语言 时间:
2020-06-23 15:31:36
阅读次数:
63
本来想参照:https://mp.weixin.qq.com/s/e7Wd7aEatcLFGgJUDkg-EQ搞一个往年编程语言动态图的,奈何找不到数据,有数据来源的欢迎在评论区留言。 这里找到了一个,是2020年6月的编程语言排行,供大家看一下:https://www.tiobe.com/tiob ...
分类:
编程语言 时间:
2020-06-23 01:02:48
阅读次数:
106
我在使用BeautifulSoup的时候对于html的解析器选择了lxml soup = BeautifulSoup(r.text, "lxml") 然后就报错了,Baidu和Google后都没有找到太满意的答案,他们的做法有的是将解析器更改成原生的Python解析器,还有的就是一些对我没有太大帮组 ...
分类:
其他好文 时间:
2020-06-19 13:36:47
阅读次数:
47
Jsoup介绍 1.为什么要使用Jsoup? 抓取到网页后,还需要对页面进行解析。对于解析有很多处理方式:比如:字符串工具解析、正则表达式等,但是上面这些成本巨大,因此需要一款专门解析html页面的技术。因此就可以使用Jsoup来实现。 2.Jsoup简介 jsoup是一款java的HTML解析器, ...
分类:
Web程序 时间:
2020-06-13 21:27:06
阅读次数:
75
Headers <algorithm> <vector> <array> <list> <stack> <queue> <set> <map> <unordered_set> <unordered_map> <string> <iterator> <utility> <tuple> <numeric ...
分类:
编程语言 时间:
2020-06-07 21:34:14
阅读次数:
88
"""信息提取的一般方法""" import requests from bs4 import BeautifulSoup url = "https://python123.io/ws/demo.html" r = requests.get(url) demo = r.text soup = Bea ...
分类:
其他好文 时间:
2020-06-05 09:13:11
阅读次数:
63
https://python123.io/ws/demo.html <html><head><title>This is a python demo page</title></head> <body> <p class="title"><b>The demo python introduces s ...
分类:
Web程序 时间:
2020-06-05 00:36:28
阅读次数:
85
#include<bits/stdc++.h>#define ll long long#define speed_up ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);using namespace std;const ll nl=1e18;/* ...
分类:
其他好文 时间:
2020-06-04 19:38:52
阅读次数:
55
如何获取一个页面内所有URL链接?在Python中可以使用urllib对网页进行爬取,然后利用Beautiful Soup对爬取的页面进行解析,提取出所有的URL。 什么是Beautiful Soup? Beautiful Soup提供一些简单的、python式的函数用来处理导航、搜索、修改分析树等 ...
分类:
编程语言 时间:
2020-06-02 13:14:23
阅读次数:
134