关于
博客主要记录关于算法方面的知识(可能偏竞赛方面),代码均使用C++编写,不包含基础的语法介绍。
遵从宁繁勿简、深入浅出的原则,每篇文章都会配上例题,尽量给出代码,方便学习。
初学者入门数据结构与算法时,面对那么多的平台和题库,可能无从下手,找不到一个系统学习的方法,也许这系列的文章能帮你系统的学到知识,有效的提高思维与代码水平😉。
推荐的OJ(在线评测系统)
目录(陆续更新)
基础算法
排序
二分
高精度
前缀和与差分
双指针
位运算
离散化
数据结构
链表
栈
队列
堆
字符串
并查集
哈希表
线段树
平衡树
搜索
广度优先搜索(BFS)
Flood Fill
最短路
多源BFS
双向广搜
A*
深度优先搜索(DFS)
全排列
连通性模型
剪枝与优化
迭代加深
IDA*
图论
最短路
拓扑排序
Dijkstra
bellman-ford
spfa
Floyd
分层图
最小生成树
Prim
Kruskal
二分图
动态规划
背包
最长上升子序列
状态压缩DP
区间DP
树形DP
数位DP
单调队列优化DP
斜率DP
数学
筛质数
分解质因数
快速幂
欧拉函数
组合计数
高斯消元
容斥原理
概率与数学期望
博弈论
万能头 与 Visual Studio
如果你使用Visual Studio,并且没有导入万能头,可以继续往下看
万能头文件涵盖了做题中需要的大部分头文件(在做题中我就没遇到需要额外导入其他头文件的题😂)。其包含的头文件较多,所以编译的时间也会比较多,但不会影响运行时间。
万能头文件使用: #include <bits/stdc++.h>
但在Visual Studio中无法直接引用万能头,需要自己手动添加。
stdc++.h源码:
// C++ includes used for precompiling -*- C++ -*-
// Copyright (C) 2003-2014 Free Software Foundation, Inc.
//
// This file is part of the GNU ISO C++ Library. This library is free
// software; you can redistribute it and/or modify it under the
// terms of the GNU General Public License as published by the
// Free Software Foundation; either version 3, or (at your option)
// any later version.
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// Under Section 7 of GPL version 3, you are granted additional
// permissions described in the GCC Runtime Library Exception, version
// 3.1, as published by the Free Software Foundation.
// You should have received a copy of the GNU General Public License and
// a copy of the GCC Runtime Library Exception along with this program;
// see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
// <http://www.gnu.org/licenses/>.
/** @file stdc++.h
* This is an implementation file for a precompiled header.
*/
// 17.4.1.2 Headers
#define _CRT_SECURE_NO_WARNINGS
// C
#ifndef _GLIBCXX_NO_ASSERT
#include <cassert>
#endif
#include <cctype>
#include <cerrno>
#include <cfloat>
#include <ciso646>
#include <climits>
#include <clocale>
#include <cmath>
#include <csetjmp>
#include <csignal>
#include <cstdarg>
#include <cstddef>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <ctime>
#if __cplusplus >= 201103L
#include <ccomplex>
#include <cfenv>
#include <cinttypes>
#include <cstdalign>
#include <cstdbool>
#include <cstdint>
#include <ctgmath>
#include <cwchar>
#include <cwctype>
#endif
// C++
#include <algorithm>
#include <bitset>
#include <complex>
#include <deque>
#include <exception>
#include <fstream>
#include <functional>
#include <iomanip>
#include <ios>
#include <iosfwd>
#include <iostream>
#include <istream>
#include <iterator>
#include <limits>
#include <list>
#include <locale>
#include <map>
#include <memory>
#include <new>
#include <numeric>
#include <ostream>
#include <queue>
#include <set>
#include <sstream>
#include <stack>
#include <stdexcept>
#include <streambuf>
#include <string>
#include <typeinfo>
#include <utility>
#include <valarray>
#include <vector>
#if __cplusplus >= 201103L
#include <array>
#include <atomic>
#include <chrono>
#include <condition_variable>
#include <forward_list>
#include <future>
#include <initializer_list>
#include <mutex>
#include <random>
#include <ratio>
#include <regex>
#include <scoped_allocator>
#include <system_error>
#include <thread>
#include <tuple>
#include <typeindex>
#include <type_traits>
#include <unordered_map>
#include <unordered_set>
#endif
在Visual Studio中使用scanf之类的C语言内置函数会报错,因为Visual Studio认为这些函数不安全,应使用scanf_s之类的函数,但在代码中加入 #define _CRT_SECURE_NO_WARNINGS
即可屏蔽这类的安全提示,毕竟我们是写算法的嘛。我已经把屏蔽安全提示的语句添加至上面的代码中了,直接复制使用即可。
快速添加至Visual Studio的方法:
- 先随便引用一个系统头文件,对其右键选择转到文档。
- 对新打开的文件(注意在右上角)右键,选择打开所在文件夹。
- 新建一个bits文件夹,把stdc++.h文件拖入
- 直接在Visual Studio中使用
#include <bits/stdc++.h>
即可
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。