岁月悠悠,衰微只及肌肤;热忱抛却,颓唐必至灵魂。

Category
STL-queue与STL-prority_queue
《算法笔记》

STL-queue与STL-prority_queue

queue queue翻译为队列,在STL中主要则是实现了一个先进先出的容器。 头文件: #include<que...
avatar
STL-map
《算法笔记》

STL-map

map翻译为映射,map可以将任何基本类型(包括STL容器)映射到任何基本类型(包括STL容器)。 头文件: #incl...
avatar
1060 Are They Equal
《算法笔记》

1060 Are They Equal

If a machine can save only 3 significant digits, the float n...
avatar
STL-set
《算法笔记》

STL-set

set翻译为集合,是一个内部自动有序且不含重复元素的容器。内部为红黑树。 头文件: #include<set>...
avatar
STL-vector
《算法笔记》

STL-vector

vector,向量(变长数组) 头文件: #include<vector> 1、vector的定义 单独定义...
avatar
1059 Prime Factors
《算法笔记》

1059 Prime Factors

Given any positive integer N, you are supposed to find all o...
avatar
1013 数素数
《算法笔记》

1013 数素数

令 $P_i$ 表示第 i 个素数。现任给两个正整数$M \leq N \leq 10^4$,请输出 $P_M$ 到 $...
avatar
数学问题
《算法笔记》

数学问题

最大公约数和最小公倍数 #include <iostream> #include <string>...
avatar
1069 The Black Hole of Numbers
《算法笔记》

1069 The Black Hole of Numbers

1069 The Black Hole of Numbers For any 4-digit integer excep...
avatar
1093 Count PAT's
《算法笔记》

1093 Count PAT’s

1093 Count PAT’s(递归,找规律) The string APPAPT contains tw...
avatar