本文分类:news发布日期:2025/1/22 23:47:50
相关文章
Golang | Leetcode Golang题解之第472题连接词
题目: 题解:
type trie struct {children [26]*trieisEnd bool
}func (root *trie) insert(word string) {node : rootfor _, ch : range word {ch - aif node.children[ch] nil {node.children[ch] &trie{}}node node.children[ch]}node.isE…
建站知识
2025/1/19 9:17:45
DVWA —— 靶场笔记合集
digininja/DVWA: Damn Vulnerable Web Application (DVWA) (github.com)https://github.com/digininja/DVWA
0x01:DVWA 靶场初识 0x0101:DVWA 靶场初识
0x02:DVWA 过关思路
建站知识
2025/1/18 13:45:12
PGMP-00基础单词(1-25)
NO单词说明梳理1BenefitAn outcome of actions, behaviors, products, or services that provide utility to the sponsoring organization as well as to the program’s intended beneficiariesutility provide utility sponsor sponsoring organization intended beneficiar…
建站知识
2025/1/22 3:33:03
代码随想录算法训练营第39天| 121,122,123. 买卖股票的最佳时机123
第九章 动态规划part08
股票问题是一个动态规划的系列问题,前两题并不难,第三题有难度。
121. 买卖股票的最佳时机
视频讲解:https://www.bilibili.com/video/BV1Xe4y1u77q
class Solution {public int maxProfit(int[] prices) {// 找到…
建站知识
2025/1/14 2:02:11
【C++堆(优先队列)】1834. 单线程 CPU|1797
本文涉及知识点
C堆(优先队列)
LeetCode1834. 单线程 CPU
给你一个二维数组 tasks ,用于表示 n 项从 0 到 n - 1 编号的任务。其中 tasks[i] [enqueueTimei, processingTimei] 意味着第 i 项任务将会于 enqueueTimei 时进入任务…
建站知识
2025/1/17 18:55:41
DVWA | DVWA 靶场初识
关注这个靶场的其它相关笔记:DVWA —— 靶场笔记合集-CSDN博客 0x01:DVWA 靶场简介
DVWA(Damn Vulnerable Web Application)是一个 PHP/MySQL 的 Web 应用程序,它被故意设计成包含多种安全漏洞,以便为网络…
建站知识
2024/12/25 10:39:11