<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
# Sieve - 筛选算法
--------
#### 问题
素数是除了$$ 1 $$和它自身没有其他数能够整除的正整数,最小的素数是$$ 2 $$。而不符合该特性的正整数是合数,常见的素数有$$ 2, 3, 5, 7, 9, 11, 13, 17, 19, 23 \dots $$。素数是数论学科中的基础概念,关于素数的最为著名的问题就是哥德巴赫猜想。
判断$$ [1 \dots n) $$中哪些是素数,哪些是合数。
#### 解法
按照素数的定理,判断一个正整数$$ x $$是否为素数,需要遍历$$ [1 \dots x] $$中所有数字$$ i $$是否能被$$ x $$整除,即$$ x % i = 0 $$。判断一个数字的时间复杂度为$$ O(n) $$,判断$$ n $$个数字的时间复杂度为$$ O(n ^ 2) $$。埃拉托斯特尼筛选法(Eratosthenes Sieve)可以更快的完成所有判断。
设置数组$$ s = [1 \dots n) $$,$$ s[i] $$表示数字$$ i $$是否为素数。初始时显然有$$ s[1] = false $$。
$$ (1) $$ 以$$ 2 $$为筛子,$$ s[2] = true, s[2 \times 2] = false, s[2 \times 3] = false \dots $$,除了$$ 2 $$本身,所有$$ 2 $$的倍数都不是素数;
$$ (2) $$ 以$$ 3 $$为筛子,$$ s[3] = true, s[3 \times 2] = false, s[3 \times 3] = false \dots $$,除了$$ 3 $$本身,所有$$ 3 $$的倍数都不是素数;
$$ (3) $$ 以$$ 5 $$为筛子,$$ s[5] = true, s[5 \times 2] = false, s[5 \times 3] = false \dots $$,除了$$ 5 $$本身,所有$$ 5 $$的倍数都不是素数;
$$
\cdots
$$
因为显然偶数中除了$$ 2 $$都是合数,可以跳过所有偶数只考察奇数。
--------
#### 源码
[Sieve.h](https://github.com/linrongbin16/Way-to-Algorithm/blob/master/src/NumberTheory/Sieve.h)
[Sieve.cpp](https://github.com/linrongbin16/Way-to-Algorithm/blob/master/src/NumberTheory/Sieve.cpp)
#### 测试
[SieveTest.cpp](https://github.com/linrongbin16/Way-to-Algorithm/blob/master/src/NumberTheory/SieveTest.cpp)
- Content 目录
- Preface 前言
- Chapter-1 Sort 第1章 排序
- InsertSort 插入排序
- BubbleSort 冒泡排序
- QuickSort 快速排序
- MergeSort 归并排序
- Chapter-2 Search 第2章 搜索
- BinarySearch 二分查找法(折半查找法)
- BruteForce 暴力枚举
- Recursion 递归
- BreadthFirstSearch 广度优先搜索
- BidirectionalBreadthSearch 双向广度搜索
- AStarSearch A*搜索
- DancingLink 舞蹈链
- Chapter-3 DataStructure 第3章 数据结构
- DisjointSet 并查集
- PrefixTree(TrieTree) 前缀树
- LeftistTree(LeftistHeap) 左偏树(左偏堆)
- SegmentTree 线段树
- FenwickTree(BinaryIndexedTree) 树状数组
- BinarySearchTree 二叉查找树
- AVLTree AVL平衡树
- RedBlackTree 红黑树
- Chapter-4 DynamicProgramming 第4章 动态规划
- Chapter-5 GraphTheory 第5章 图论
- Chapter-6 Calculation 第6章 计算
- LargeNumber 大数字
- Exponentiation 求幂运算
- Chapter-7 CombinatorialMathematics 第7章 组合数学
- FullPermutation 全排列
- UniqueFullPermutation 唯一的全排列
- Combination 组合
- DuplicableCombination (元素)可重复的组合
- Subset 子集
- UniqueSubset 唯一的子集
- Permutation 排列
- PermutationGroup 置换群
- Catalan 卡特兰数
- Chapter-8 NumberTheory 第8章 数论
- Sieve 筛选算法
- Euclid 欧几里得
- EuclidExtension 欧几里得扩展
- ModularLinearEquation 模线性方程
- ChineseRemainerTheorem 中国剩余定理
- ModularExponentiation 模幂运算
- Chapter-9 LinearAlgebra 第9章 线性代数
- Chapter-10 AnalyticGeometry 第10章 解析几何
- Chapter-11 TextMatch 第11章 文本匹配
- SimpleMatch 简单匹配
- AhoCorasickAutomata AC自动机
- KnuthMorrisPratt KMP匹配算法
- RabinKarp RabinKarp算法
- BoyerMoore BoyerMoore算法
- Chapter-12 GameTheory 第12章 博弈论
- BashGame 巴什博弈
- WythoffGame 威佐夫博弈
- NimGame 尼姆博弈