链式前项星的概念与应用 Posted on 2020-04-21 | In bfs Words count in article: 1.2k | Reading time ≈ 5 链式前向星 链式前向星在存储图时十分有用,特别是当边有权值时。我们用过一道题目了来具体分析一下 链式前向星只是一种应用,是一种小技巧。所以我们先要构造一个链式前向星来存储数据。 1234567891011121314151617181920212223242526272829303132 ... Read more »
初识正则表达式 Posted on 2020-04-20 | In Regular Expression Words count in article: 2.9k | Reading time ≈ 11 正则表达式的探索与发现-爬虫项目系列博客 因为要实现爬虫的功能,正则表达式是必须要掌握和简单应用的。那么这对于从来没看到过正则表达式的小白来说,它无疑是头痛的,因为它的长这个样子 12var url_reg = /\/(\d{4})\/(\d{2})- ... Read more »
用nodejs来制作一个简单的爬虫来爬取网页信息 Posted on 2020-04-20 Words count in article: 4.9k | Reading time ≈ 18 用nodejs来制作一个简单的爬虫来爬取网页信息写在前面——知其然也要知其所以然 像我这样连冲个咖啡豆要记笔记的人,怎么能写自己都看不懂的博客呢?所以我的目标是你读完了我的博客,也可以写出爬虫来。 这一篇是目录性质的博客,冰冻三尺非一日之寒,爬虫项目只写一篇博客是完全不够的,所以我打算用分而治之的 ... Read more »
17.09第k个数 Posted on 2020-04-20 | In bfs Words count in article: 157 | Reading time ≈ 1 下面是题目 下面是题目给出的模板123456class Solution {public: int getKthMagicNumber(int k) { }}; 用BFS+set可以完美遍历,真的太爽了12345678910111213 ... Read more »
933最近的请求次数 Posted on 2020-04-20 Words count in article: 189 | Reading time ≈ 1 933最近请求次数下面是题目 下面是题目给出的代码1234567891011121314151617class RecentCounter {public: RecentCounter() { } int ping(int t) { ... Read more »
621任务调度器 Posted on 2020-04-20 Words count in article: 1.1k | Reading time ≈ 4 621 任务调度器下面是题目 下面是题目给出的代码模板123456class Solution {public: int leastInterval(vector<char>& tasks, int n) { }} ... Read more »
206反转链表 Posted on 2020-04-20 Words count in article: 561 | Reading time ≈ 2 206反转链表写在前面 这篇的原文也在搭建博客中不幸牺牲 但是我还会简单注释一下 反转链表的作用很多,可以当作别的题目的子函数,比如回文,分隔等等 下面是题目 下面是题目给出的代码123456789101112131415/** * Definition for singly-linked li ... Read more »
160相交lianbiao Posted on 2020-04-20 Words count in article: 396 | Reading time ≈ 1 160 相交链表下面是题目 下面是题目给出的代码1234567891011121314/** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ... Read more »