摘要: 前言 在网上看到了许多"免费frp,但都限速得很严重" 所以我决定自己搭一个自己用! 开始 首先下载☆夢幻煋涳☆大佬的脚本 然后放一份到服务器上运行,一步一步操作即可 最后用手头上的那份连接服务器即可 说明 如果是http服务器的话,端口是服务器上绑定的端口(8080等),不是自己电脑上的端口 一般 阅读全文
posted @ 2021-07-15 16:38 xihale 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 实用 以管理员运行 apt install sudo 编译环境安装 apt install gcc -y apt install g++ -y apt install python -y 美化 艺术字 apt install figlet figlet 装X apt install cmatrix 阅读全文
posted @ 2021-05-05 12:57 xihale 阅读(125) 评论(0) 推荐(0) 编辑
摘要: 打开题目 总体思路:爆破 遇到的问题:(用python是服务器经常无响应每次都要重新爆破,所以改良了一下代码) 注意: 如果显示失败就再运行一次py文件,知道key.txt被创建 import requests def ssh(): """读取data数据""" with open("data.tx 阅读全文
posted @ 2021-04-24 10:07 xihale 阅读(122) 评论(0) 推荐(0) 编辑
摘要: 进入题目 思路(主体) 分别向右和向左搜索,找到最大值 代码 #include <iostream> #include <cstdio> #include <vector> using namespace std; void dp() //定义函数的方式方便重复调用 { int n,Max_righ 阅读全文
posted @ 2021-04-17 09:29 xihale 阅读(67) 评论(0) 推荐(0) 编辑
摘要: 进入题目 思路(代码主体) sum[i]=max(sum[i],sum[j]+m[i]) 代码 #include <iostream> #include <cstdio> #include <vector> using namespace std; int main() { int n,Max=0; 阅读全文
posted @ 2021-04-17 08:56 xihale 阅读(50) 评论(0) 推荐(0) 编辑
摘要: ##前言 这是我在一个晚修时无聊时想到的,我称他为保留数据式交换(没什么技术含量,看看思路即可) 额,写得有点乱,将就看看吧 ##解释 就是把两个数通过特定的方法结合起来,然后我们可以通过其中一个值求出另一个值 ##方法: 1.+ 2.- 3.* 4./ 当然最好的还是 ^ 注意:像 % & | 这 阅读全文
posted @ 2021-04-05 11:19 xihale 阅读(295) 评论(0) 推荐(1) 编辑
摘要: 注:本文章参考 https://www.runoob.com/w3cnote/cpp-vector-container-analysis.html ##前言: 最近遇到一个广搜的题,不管怎么试都会暴 然后我就想到了vector容器 ##What's vector? 一个无限空间的链表程序集 既然是链 阅读全文
posted @ 2021-04-05 08:22 xihale 阅读(74) 评论(0) 推荐(0) 编辑
摘要: 1.GitHub 镜像访问 这里提供两个最常用的镜像地址(别登录账号): https://github.com.cnpmjs.org https://hub.fastgit.org 也就是说上面的镜像就是一个克隆版的Github,你可以访问上面的镜像网站,网站的内容跟Github是完整同步的镜像,然 阅读全文
posted @ 2021-04-04 22:58 xihale 阅读(37076) 评论(0) 推荐(2) 编辑
摘要: var own=docment.currentScript; 阅读全文
posted @ 2021-03-07 12:13 xihale 阅读(99) 评论(0) 推荐(0) 编辑
摘要: 参照: https://gitee.com/guangzan/awescnb 阅读全文
posted @ 2021-03-06 11:58 xihale 阅读(99) 评论(0) 推荐(1) 编辑