本文分类:news发布日期:2025/1/19 8:16:13
相关文章
带链的队列,入队,退队,检测带链队列的状态
代码:
#include<iostream>
using namespace std;
template<class T>
struct node
{T d;node *next;};
template<class T>
class linked_Queue
{private:node<T> *front;node<T> *rear;public:linked_Queue();void prt_linked_Queue(…
建站知识
2025/1/9 19:12:52
3.4 爬虫实战-爬去智联招聘职位信息
课程目标
爬去智联招聘
课程内容
import requests
from bs4 import BeautifulSoup
from tqdm import tqdm
import pandas as pd
import time
def tran_salary(ori_salary):if "万" in ori_salary:ori_salary ori_salary.replace("万","")ori…
建站知识
2025/1/19 8:12:46
C语言 | Leetcode C语言题解之第443题压缩字符串
题目: 题解:
void swap(char *a, char *b) {char t *a;*a *b, *b t;
}void reverse(char *a, char *b) {while (a < b) {swap(a, --b);}
}int compress(char *chars, int charsSize) {int write 0, left 0;for (int read 0; read < charsSi…
建站知识
2024/12/24 22:05:35
【力扣 | SQL题 | 每日三题】力扣1148, 1327, 1211, 1174
1. 力扣1148:文章浏览1
1.1 题目:
Views 表:
------------------------
| Column Name | Type |
------------------------
| article_id | int |
| author_id | int |
| viewer_id | int |
| view_date …
建站知识
2025/1/10 12:37:28
C++ | Leetcode C++题解之第445题两数相加II
题目: 题解:
class Solution {
public:ListNode* addTwoNumbers(ListNode* l1, ListNode* l2) {stack<int> s1, s2;while (l1) {s1.push(l1 -> val);l1 l1 -> next;}while (l2) {s2.push(l2 -> val);l2 l2 -> next;}int carry 0;L…
建站知识
2025/1/9 19:18:41
k8s搭建双主的mysql8集群---无坑
《k8s搭建一主三从的mysql8集群---无坑-CSDN博客》通过搭建一主三从,我们能理解到主节点只有1个,那么承担增删改主要还是主节点,如果你在从节点上去操作增删改操作,数据不会同步到其他节点。本章我们将实现多主(双主&a…
建站知识
2025/1/9 22:25:08
力扣 简单 104.二叉树的最大深度
文章目录 题目介绍解法 题目介绍 解法
如果知道了左子树和右子树的最大深度 l 和 r,那么该二叉树的最大深度即为max(l,r)1,而左子树和右子树的最大深度又可以以同样的方式进行计算。因此我们可以用递归的方法来计算二叉树的最大深度。具体而言ÿ…
建站知识
2025/1/9 19:18:54
python装饰器用法
为什么用装饰器?
第一个原因是,使用装饰器可以提升代码复用,避免重复冗余代码。如果我有多个函数需要测量执行时间,我可以直接将装饰器应用在这些函数上,而不是给多个函数加上一样的代码。这样的代码既元余也不方便后…
建站知识
2025/1/9 19:22:12