-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
262 changed files
with
1,714 additions
and
1,732 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,25 +13,25 @@ | |
<meta http-equiv="x-ua-compatible" content="ie=edge"> | ||
|
||
<meta name="theme-color" content="#2f4154"> | ||
<meta name="author" content="Do1phln"> | ||
<meta name="author" content="Jiajun Chen"> | ||
<meta name="keywords" content=""> | ||
|
||
<meta name="description" content="思路快排基本思路应该就是二分+递归,从两侧同时(实则先从右往左)往中间找,同时和参变量对比,发现位置颠倒后交换位置,然后通过二分将其一块一块的分割开,直到分割到一个元素位置,即完成了快排。"> | ||
<meta property="og:type" content="article"> | ||
<meta property="og:title" content="Notes-QuickSort"> | ||
<meta property="og:url" content="https://www.0error.net/2020/10/12aa90f7.html"> | ||
<meta property="og:site_name" content="Do1phln的学习备用录"> | ||
<meta property="og:site_name" content="Jiajun Chen's Website"> | ||
<meta property="og:description" content="思路快排基本思路应该就是二分+递归,从两侧同时(实则先从右往左)往中间找,同时和参变量对比,发现位置颠倒后交换位置,然后通过二分将其一块一块的分割开,直到分割到一个元素位置,即完成了快排。"> | ||
<meta property="og:locale" content="zh_CN"> | ||
<meta property="article:published_time" content="2020-10-10T04:03:02.000Z"> | ||
<meta property="article:modified_time" content="2023-11-08T04:25:37.545Z"> | ||
<meta property="article:author" content="Do1phln"> | ||
<meta property="article:author" content="Jiajun Chen"> | ||
<meta property="article:tag" content="ACM"> | ||
<meta name="twitter:card" content="summary_large_image"> | ||
|
||
|
||
|
||
<title>Notes-QuickSort - Do1phln的学习备用录</title> | ||
<title>Notes-QuickSort - Jiajun Chen's Website</title> | ||
|
||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" /> | ||
|
||
|
@@ -123,7 +123,7 @@ | |
<nav id="navbar" class="navbar fixed-top navbar-expand-lg navbar-dark scrolling-navbar"> | ||
<div class="container"> | ||
<a class="navbar-brand" href="/"> | ||
<strong>Do1phln</strong> | ||
<strong>Jiajun Chen's Blog</strong> | ||
</a> | ||
|
||
<button id="navbar-toggler-btn" class="navbar-toggler" type="button" data-toggle="collapse" | ||
|
@@ -351,7 +351,7 @@ <h1 id="总结"><a href="#总结" class="headerlink" title="总结"></a>总结</ | |
|
||
<div class="license-meta-item"> | ||
<div>作者</div> | ||
<div>Do1phln</div> | ||
<div>Jiajun Chen</div> | ||
</div> | ||
|
||
|
||
|
@@ -544,7 +544,7 @@ <h4 class="modal-title w-100 font-weight-bold">搜索</h4> | |
<div class="footer-inner"> | ||
|
||
<div class="footer-content"> | ||
<a href="https://hexo.io" target="_blank" rel="nofollow noopener"><span>Hexo</span></a> <i class="iconfont icon-copyright"></i> <a href="https://www.0error.net" target="_blank" rel="nofollow noopener"><span>Do1phln 2017 - 2023</span></a><br> <a target="_blank" rel="noopener" href="https://www.upyun.com/?utm_source=lianmeng&utm_medium=referral">本网站由<img border="0" height="20" src="https://image.0error.net/img/2022/又拍云_logo2.png" srcset="/img/loading.gif" lazyload />提供CDN加速/云存储服务</a> <div> <span id="timeDate">载入天数...</span> <span id="times">载入时分秒...</span> <script src="/js/duration.js"></script> </div> | ||
<a href="https://hexo.io" target="_blank" rel="nofollow noopener"><span>Hexo</span></a> <i class="iconfont icon-copyright"></i> <a href="https://www.0error.net" target="_blank" rel="nofollow noopener"><span>2017 - 2023</span></a><br> <a target="_blank" rel="noopener" href="https://www.upyun.com/?utm_source=lianmeng&utm_medium=referral">本网站由<img border="0" height="20" src="https://image.0error.net/img/2022/又拍云_logo2.png" srcset="/img/loading.gif" lazyload />提供CDN加速/云存储服务</a> <div> <span id="timeDate">载入天数...</span> <span id="times">载入时分秒...</span> <script src="/js/duration.js"></script> </div> | ||
</div> | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,25 +13,25 @@ | |
<meta http-equiv="x-ua-compatible" content="ie=edge"> | ||
|
||
<meta name="theme-color" content="#2f4154"> | ||
<meta name="author" content="Do1phln"> | ||
<meta name="author" content="Jiajun Chen"> | ||
<meta name="keywords" content=""> | ||
|
||
<meta name="description" content="123456789101112131415161718192021222324252627282930313233343536373839404142434445#include<iostream>using namespace std;int book[101],sum,n,e[101][101];void dfs(int cur)&#123; cout<<cur<"> | ||
<meta property="og:type" content="article"> | ||
<meta property="og:title" content="Notes-STL-dfs"> | ||
<meta property="og:url" content="https://www.0error.net/2020/10/3fbdba09.html"> | ||
<meta property="og:site_name" content="Do1phln的学习备用录"> | ||
<meta property="og:site_name" content="Jiajun Chen's Website"> | ||
<meta property="og:description" content="123456789101112131415161718192021222324252627282930313233343536373839404142434445#include<iostream>using namespace std;int book[101],sum,n,e[101][101];void dfs(int cur)&#123; cout<<cur<"> | ||
<meta property="og:locale" content="zh_CN"> | ||
<meta property="article:published_time" content="2020-10-15T13:42:10.000Z"> | ||
<meta property="article:modified_time" content="2023-11-08T04:25:37.546Z"> | ||
<meta property="article:author" content="Do1phln"> | ||
<meta property="article:author" content="Jiajun Chen"> | ||
<meta property="article:tag" content="ACM"> | ||
<meta name="twitter:card" content="summary_large_image"> | ||
|
||
|
||
|
||
<title>Notes-STL-dfs - Do1phln的学习备用录</title> | ||
<title>Notes-STL-dfs - Jiajun Chen's Website</title> | ||
|
||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" /> | ||
|
||
|
@@ -123,7 +123,7 @@ | |
<nav id="navbar" class="navbar fixed-top navbar-expand-lg navbar-dark scrolling-navbar"> | ||
<div class="container"> | ||
<a class="navbar-brand" href="/"> | ||
<strong>Do1phln</strong> | ||
<strong>Jiajun Chen's Blog</strong> | ||
</a> | ||
|
||
<button id="navbar-toggler-btn" class="navbar-toggler" type="button" data-toggle="collapse" | ||
|
@@ -345,7 +345,7 @@ <h1 style="display: none">Notes-STL-dfs</h1> | |
|
||
<div class="license-meta-item"> | ||
<div>作者</div> | ||
<div>Do1phln</div> | ||
<div>Jiajun Chen</div> | ||
</div> | ||
|
||
|
||
|
@@ -538,7 +538,7 @@ <h4 class="modal-title w-100 font-weight-bold">搜索</h4> | |
<div class="footer-inner"> | ||
|
||
<div class="footer-content"> | ||
<a href="https://hexo.io" target="_blank" rel="nofollow noopener"><span>Hexo</span></a> <i class="iconfont icon-copyright"></i> <a href="https://www.0error.net" target="_blank" rel="nofollow noopener"><span>Do1phln 2017 - 2023</span></a><br> <a target="_blank" rel="noopener" href="https://www.upyun.com/?utm_source=lianmeng&utm_medium=referral">本网站由<img border="0" height="20" src="https://image.0error.net/img/2022/又拍云_logo2.png" srcset="/img/loading.gif" lazyload />提供CDN加速/云存储服务</a> <div> <span id="timeDate">载入天数...</span> <span id="times">载入时分秒...</span> <script src="/js/duration.js"></script> </div> | ||
<a href="https://hexo.io" target="_blank" rel="nofollow noopener"><span>Hexo</span></a> <i class="iconfont icon-copyright"></i> <a href="https://www.0error.net" target="_blank" rel="nofollow noopener"><span>2017 - 2023</span></a><br> <a target="_blank" rel="noopener" href="https://www.upyun.com/?utm_source=lianmeng&utm_medium=referral">本网站由<img border="0" height="20" src="https://image.0error.net/img/2022/又拍云_logo2.png" srcset="/img/loading.gif" lazyload />提供CDN加速/云存储服务</a> <div> <span id="timeDate">载入天数...</span> <span id="times">载入时分秒...</span> <script src="/js/duration.js"></script> </div> | ||
</div> | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,25 +13,25 @@ | |
<meta http-equiv="x-ua-compatible" content="ie=edge"> | ||
|
||
<meta name="theme-color" content="#2f4154"> | ||
<meta name="author" content="Do1phln"> | ||
<meta name="author" content="Jiajun Chen"> | ||
<meta name="keywords" content=""> | ||
|
||
<meta name="description" content="思路队列的原理基本与站队一样,队首出,队尾入,变化以后也是大同小异,写起来主要就是注意struct的相关知识,以及伪指针(分别指向队首和队尾+1),队尾序号要+1以防首位变量数字重合造成不必要的麻烦(目前也不是很清楚会遇到什么)"> | ||
<meta property="og:type" content="article"> | ||
<meta property="og:title" content="Notes-queue队列"> | ||
<meta property="og:url" content="https://www.0error.net/2020/10/64d83881.html"> | ||
<meta property="og:site_name" content="Do1phln的学习备用录"> | ||
<meta property="og:site_name" content="Jiajun Chen's Website"> | ||
<meta property="og:description" content="思路队列的原理基本与站队一样,队首出,队尾入,变化以后也是大同小异,写起来主要就是注意struct的相关知识,以及伪指针(分别指向队首和队尾+1),队尾序号要+1以防首位变量数字重合造成不必要的麻烦(目前也不是很清楚会遇到什么)"> | ||
<meta property="og:locale" content="zh_CN"> | ||
<meta property="article:published_time" content="2020-10-10T04:16:33.000Z"> | ||
<meta property="article:modified_time" content="2023-11-08T04:25:37.546Z"> | ||
<meta property="article:author" content="Do1phln"> | ||
<meta property="article:author" content="Jiajun Chen"> | ||
<meta property="article:tag" content="ACM"> | ||
<meta name="twitter:card" content="summary_large_image"> | ||
|
||
|
||
|
||
<title>Notes-queue队列 - Do1phln的学习备用录</title> | ||
<title>Notes-queue队列 - Jiajun Chen's Website</title> | ||
|
||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" /> | ||
|
||
|
@@ -123,7 +123,7 @@ | |
<nav id="navbar" class="navbar fixed-top navbar-expand-lg navbar-dark scrolling-navbar"> | ||
<div class="container"> | ||
<a class="navbar-brand" href="/"> | ||
<strong>Do1phln</strong> | ||
<strong>Jiajun Chen's Blog</strong> | ||
</a> | ||
|
||
<button id="navbar-toggler-btn" class="navbar-toggler" type="button" data-toggle="collapse" | ||
|
@@ -350,7 +350,7 @@ <h1 id="总结"><a href="#总结" class="headerlink" title="总结"></a>总结</ | |
|
||
<div class="license-meta-item"> | ||
<div>作者</div> | ||
<div>Do1phln</div> | ||
<div>Jiajun Chen</div> | ||
</div> | ||
|
||
|
||
|
@@ -543,7 +543,7 @@ <h4 class="modal-title w-100 font-weight-bold">搜索</h4> | |
<div class="footer-inner"> | ||
|
||
<div class="footer-content"> | ||
<a href="https://hexo.io" target="_blank" rel="nofollow noopener"><span>Hexo</span></a> <i class="iconfont icon-copyright"></i> <a href="https://www.0error.net" target="_blank" rel="nofollow noopener"><span>Do1phln 2017 - 2023</span></a><br> <a target="_blank" rel="noopener" href="https://www.upyun.com/?utm_source=lianmeng&utm_medium=referral">本网站由<img border="0" height="20" src="https://image.0error.net/img/2022/又拍云_logo2.png" srcset="/img/loading.gif" lazyload />提供CDN加速/云存储服务</a> <div> <span id="timeDate">载入天数...</span> <span id="times">载入时分秒...</span> <script src="/js/duration.js"></script> </div> | ||
<a href="https://hexo.io" target="_blank" rel="nofollow noopener"><span>Hexo</span></a> <i class="iconfont icon-copyright"></i> <a href="https://www.0error.net" target="_blank" rel="nofollow noopener"><span>2017 - 2023</span></a><br> <a target="_blank" rel="noopener" href="https://www.upyun.com/?utm_source=lianmeng&utm_medium=referral">本网站由<img border="0" height="20" src="https://image.0error.net/img/2022/又拍云_logo2.png" srcset="/img/loading.gif" lazyload />提供CDN加速/云存储服务</a> <div> <span id="timeDate">载入天数...</span> <span id="times">载入时分秒...</span> <script src="/js/duration.js"></script> </div> | ||
</div> | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,25 +13,25 @@ | |
<meta http-equiv="x-ua-compatible" content="ie=edge"> | ||
|
||
<meta name="theme-color" content="#2f4154"> | ||
<meta name="author" content="Do1phln"> | ||
<meta name="author" content="Jiajun Chen"> | ||
<meta name="keywords" content=""> | ||
|
||
<meta name="description" content="刷pico遇到一个凯撒密码加密题,顺手写了个解密工具,但是暂时没有解决到边界字母的升降档问题"> | ||
<meta property="og:type" content="article"> | ||
<meta property="og:title" content="Caser-Pass-Tool1-C++"> | ||
<meta property="og:url" content="https://www.0error.net/2020/10/992fe380.html"> | ||
<meta property="og:site_name" content="Do1phln的学习备用录"> | ||
<meta property="og:site_name" content="Jiajun Chen's Website"> | ||
<meta property="og:description" content="刷pico遇到一个凯撒密码加密题,顺手写了个解密工具,但是暂时没有解决到边界字母的升降档问题"> | ||
<meta property="og:locale" content="zh_CN"> | ||
<meta property="article:published_time" content="2020-10-12T02:48:51.000Z"> | ||
<meta property="article:modified_time" content="2023-11-08T04:25:37.537Z"> | ||
<meta property="article:author" content="Do1phln"> | ||
<meta property="article:author" content="Jiajun Chen"> | ||
<meta property="article:tag" content="CTF"> | ||
<meta name="twitter:card" content="summary_large_image"> | ||
|
||
|
||
|
||
<title>Caser-Pass-Tool1-C++ - Do1phln的学习备用录</title> | ||
<title>Caser-Pass-Tool1-C++ - Jiajun Chen's Website</title> | ||
|
||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" /> | ||
|
||
|
@@ -123,7 +123,7 @@ | |
<nav id="navbar" class="navbar fixed-top navbar-expand-lg navbar-dark scrolling-navbar"> | ||
<div class="container"> | ||
<a class="navbar-brand" href="/"> | ||
<strong>Do1phln</strong> | ||
<strong>Jiajun Chen's Blog</strong> | ||
</a> | ||
|
||
<button id="navbar-toggler-btn" class="navbar-toggler" type="button" data-toggle="collapse" | ||
|
@@ -348,7 +348,7 @@ <h1 style="display: none">Caser-Pass-Tool1-C++</h1> | |
|
||
<div class="license-meta-item"> | ||
<div>作者</div> | ||
<div>Do1phln</div> | ||
<div>Jiajun Chen</div> | ||
</div> | ||
|
||
|
||
|
@@ -541,7 +541,7 @@ <h4 class="modal-title w-100 font-weight-bold">搜索</h4> | |
<div class="footer-inner"> | ||
|
||
<div class="footer-content"> | ||
<a href="https://hexo.io" target="_blank" rel="nofollow noopener"><span>Hexo</span></a> <i class="iconfont icon-copyright"></i> <a href="https://www.0error.net" target="_blank" rel="nofollow noopener"><span>Do1phln 2017 - 2023</span></a><br> <a target="_blank" rel="noopener" href="https://www.upyun.com/?utm_source=lianmeng&utm_medium=referral">本网站由<img border="0" height="20" src="https://image.0error.net/img/2022/又拍云_logo2.png" srcset="/img/loading.gif" lazyload />提供CDN加速/云存储服务</a> <div> <span id="timeDate">载入天数...</span> <span id="times">载入时分秒...</span> <script src="/js/duration.js"></script> </div> | ||
<a href="https://hexo.io" target="_blank" rel="nofollow noopener"><span>Hexo</span></a> <i class="iconfont icon-copyright"></i> <a href="https://www.0error.net" target="_blank" rel="nofollow noopener"><span>2017 - 2023</span></a><br> <a target="_blank" rel="noopener" href="https://www.upyun.com/?utm_source=lianmeng&utm_medium=referral">本网站由<img border="0" height="20" src="https://image.0error.net/img/2022/又拍云_logo2.png" srcset="/img/loading.gif" lazyload />提供CDN加速/云存储服务</a> <div> <span id="timeDate">载入天数...</span> <span id="times">载入时分秒...</span> <script src="/js/duration.js"></script> </div> | ||
</div> | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,25 +13,25 @@ | |
<meta http-equiv="x-ua-compatible" content="ie=edge"> | ||
|
||
<meta name="theme-color" content="#2f4154"> | ||
<meta name="author" content="Do1phln"> | ||
<meta name="author" content="Jiajun Chen"> | ||
<meta name="keywords" content=""> | ||
|
||
<meta name="description" content="1.金三胖典型入门题目,将GIF图片导入StegSolve,Analyse->Frame Browser,逐帧查看,将闪过的几张falg内容拼接起来即可"> | ||
<meta property="og:type" content="article"> | ||
<meta property="og:title" content="buuctf-misc-10/09"> | ||
<meta property="og:url" content="https://www.0error.net/2020/10/d61633e9.html"> | ||
<meta property="og:site_name" content="Do1phln的学习备用录"> | ||
<meta property="og:site_name" content="Jiajun Chen's Website"> | ||
<meta property="og:description" content="1.金三胖典型入门题目,将GIF图片导入StegSolve,Analyse->Frame Browser,逐帧查看,将闪过的几张falg内容拼接起来即可"> | ||
<meta property="og:locale" content="zh_CN"> | ||
<meta property="article:published_time" content="2020-10-10T03:50:22.000Z"> | ||
<meta property="article:modified_time" content="2023-11-08T04:25:37.554Z"> | ||
<meta property="article:author" content="Do1phln"> | ||
<meta property="article:author" content="Jiajun Chen"> | ||
<meta property="article:tag" content="CTF"> | ||
<meta name="twitter:card" content="summary_large_image"> | ||
|
||
|
||
|
||
<title>buuctf-misc-10/09 - Do1phln的学习备用录</title> | ||
<title>buuctf-misc-10/09 - Jiajun Chen's Website</title> | ||
|
||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" /> | ||
|
||
|
@@ -123,7 +123,7 @@ | |
<nav id="navbar" class="navbar fixed-top navbar-expand-lg navbar-dark scrolling-navbar"> | ||
<div class="container"> | ||
<a class="navbar-brand" href="/"> | ||
<strong>Do1phln</strong> | ||
<strong>Jiajun Chen's Blog</strong> | ||
</a> | ||
|
||
<button id="navbar-toggler-btn" class="navbar-toggler" type="button" data-toggle="collapse" | ||
|
@@ -351,7 +351,7 @@ <h1 id="6-基础破解"><a href="#6-基础破解" class="headerlink" title="6. | |
|
||
<div class="license-meta-item"> | ||
<div>作者</div> | ||
<div>Do1phln</div> | ||
<div>Jiajun Chen</div> | ||
</div> | ||
|
||
|
||
|
@@ -538,7 +538,7 @@ <h4 class="modal-title w-100 font-weight-bold">搜索</h4> | |
<div class="footer-inner"> | ||
|
||
<div class="footer-content"> | ||
<a href="https://hexo.io" target="_blank" rel="nofollow noopener"><span>Hexo</span></a> <i class="iconfont icon-copyright"></i> <a href="https://www.0error.net" target="_blank" rel="nofollow noopener"><span>Do1phln 2017 - 2023</span></a><br> <a target="_blank" rel="noopener" href="https://www.upyun.com/?utm_source=lianmeng&utm_medium=referral">本网站由<img border="0" height="20" src="https://image.0error.net/img/2022/又拍云_logo2.png" srcset="/img/loading.gif" lazyload />提供CDN加速/云存储服务</a> <div> <span id="timeDate">载入天数...</span> <span id="times">载入时分秒...</span> <script src="/js/duration.js"></script> </div> | ||
<a href="https://hexo.io" target="_blank" rel="nofollow noopener"><span>Hexo</span></a> <i class="iconfont icon-copyright"></i> <a href="https://www.0error.net" target="_blank" rel="nofollow noopener"><span>2017 - 2023</span></a><br> <a target="_blank" rel="noopener" href="https://www.upyun.com/?utm_source=lianmeng&utm_medium=referral">本网站由<img border="0" height="20" src="https://image.0error.net/img/2022/又拍云_logo2.png" srcset="/img/loading.gif" lazyload />提供CDN加速/云存储服务</a> <div> <span id="timeDate">载入天数...</span> <span id="times">载入时分秒...</span> <script src="/js/duration.js"></script> </div> | ||
</div> | ||
|
||
|
||
|
Oops, something went wrong.