-
nextjs 实战开发1 Mercury 二级域名分发系统| 曲速引擎 Warp Drive
开发目标 开发一个免费的二级域名分发系统 创建项目 root@ubuntu:~/dev-nextjs/mercury_frontend# pnpm create next-app@latest .版本:pnpm -v 9.12.2版本:node -v v20.16.0版本:next 15.0.2为了 -
24.10.31
不喜欢 CTT 模拟赛。 A 我卡双模哈希?尊嘟假嘟? 考虑先构造出两个串把第一个模卡掉,然后用这两个串拼出两个串把第二个模卡掉。 两个过程是相同的。一个很唐的方法是先随机出一个串然后检查其是否有子串哈希冲突。 B 题解 C 题解 P2575 博弈论。可以注意到每行互不影响,所以组合游戏直接把 SG -
Hadoop3.13概述与分而治之思想
一、Hadoop的发展史 图解 Hadoop三大开源发行版本:Apache、Cloudera(CDH)、Hortonworks(HDP)。Apache版本最原始(最基础)的版本,对于入门学习最好。Cloudera在大型互联网企业中用的较多。Hortonworks文档较好。 Apache Hadoop -
数据结构杂题乱记
由于是杂题乱记所以题目大多数不会太难。 目录P2572 [SCOI2010] 序列操作题目内容思路代码 P2572 [SCOI2010] 序列操作 题目内容 给你一个 \(01\) 序列,支持 \(5\) 种操作: 0 l r区间赋值为 \(0\); 1 l r区间赋值为 \(1\); 2 l r区 -
「模拟赛」多校 A 层联训 15
比赛链接 A. 追逐游戏 (chase) 没啥意义的水题,但赛时没调出来。 分讨,LCA 设 \(S\) 和 \(T\) 的 LCA 为 \(lca\) \(S'\) 为 \(lca\) 的祖先节点的时候,\(S'\) 到达 \(s->T\) 这条链上的第一个点 \(x\) 一定是 \(lca\) -
CPP异常处理之noexcept函数类型
Exception specifications and noexcept in CPP Looking at a typical function declaration, it is not possible to determine whether a function might throw -
CPP异常处理之noexcept函数类型
Exception specifications and noexcept in CPP Looking at a typical function declaration, it is not possible to determine whether a function might throw -
CPP异常处理之noexcept函数类型
Exception specifications and noexcept in CPP Looking at a typical function declaration, it is not possible to determine whether a function might throw -
『模拟赛』多校A层冲刺NOIP2024模拟赛16
『模拟赛记录』多校A层冲刺NOIP2024模拟赛16 -
哈希表
? -
centos安装最新Python
1. 卸载现有Python版本 sudo yum remove python 2. 安装开发工具 sudo yum groupinstall "Development Tools" -y sudo yum install openssl-devel bzip2-devel libffi-devel -
快速幂和大数取模的简单运用(以SPOJ LASTDIG - The last digit为例)
题目描述 原文 Nestor was doing the work of his math class about three days but he is tired of make operations a lot and he should deliver his task tomorrow. -
C++深拷贝与浅拷贝构造函数分析
Shallow copying Because C++ does not know much about your class, the default copy constructor and default assignment operators it provides use a copyi -
C++深拷贝与浅拷贝构造函数分析
Shallow copying Because C++ does not know much about your class, the default copy constructor and default assignment operators it provides use a copyi -
C++深拷贝与浅拷贝构造函数分析
Shallow copying Because C++ does not know much about your class, the default copy constructor and default assignment operators it provides use a copyi -
实验2
task 1.cpp 1 // 类T: 实现 2 // 普通函数实现 3 4 #include "t.h" 5 #include <iostream> 6 #include <string> 7 8 using std::cout; 9 using std::endl; 10 using std:: -
常用极限定理
1.数列运算法则 假设 \(lim_{x \to \infty}x_n=a\) , \(lim_{y \to \infty}y_n=b\) (1)\(lim_{n \to \infty} (x_n+y_n)=lim_{n \to \infty}x_n+lim_{n \to \infty y_n}=a -
2024.10.31总结
本文于 github 同步更新。 最后一天喽 A: 卡双模哈希🤓。 首先正常随机字符串卡第一个模数,期望随机 \(\sqrt p_1\) 次,找到冲突的两个字符串 \(s_1,s_2\)。 然后我们将 \(s_1,s_2\) 当成两个字符,不断随机由若干个 \(s_1,s_2\) 拼接成的字符串去