superzcl
superzcl
全部文章
分类
ACM2018 and 2019 Exercise(28)
ACM模板(23)
AIstudy(1)
BFS(8)
C++学习笔记(20)
codeforces(13)
DFS(7)
hash哈希(2)
HDU100题(23)
Java 学习笔记(5)
KMP(2)
Python 学习笔记(8)
Python与爬虫(2)
sort+结构体(3)
STL(25)
string(1)
web设计(2)
二分和尺取(6)
人工智能学习(1)
位运算(2)
分治和递归(3)
前缀后缀差分打表(2)
动态规划(19)
博弈论(1)
图论(6)
康托和逆康托展开(1)
排序算法(2)
数学思维题(13)
数论(5)
最小生成树(3)
最短路(2)
未归档(85)
栈和队列(9)
模拟(3)
算法与数据结构(38)
算法与数据结构学习笔记(14)
线段树(5)
贪心(13)
软件安装(7)
速筛与快速幂(5)
面向对象(2)
归档
标签
去牛客网
登录
/
注册
成龙大侠
千里之行,始于足下
全部文章
(共420篇)
Star FZU - 2110 锐角三角形判定
Overpower often go to the playground with classmates. They play and chat on the playground. One day, there are a lot of stars in the sky. Suddenly, on...
2019-04-08
0
493
Star FZU - 2110 锐角三角形判定
Overpower often go to the playground with classmates. They play and chat on the playground. One day, there are a lot of stars in the sky. Suddenly, on...
2019-04-08
0
403
Team Formation ZOJ - 3870 二进制运算
Team Formation ZOJ - 3870 For an upcoming programming contest, Edward, the headmaster of Marjar University, is for...
2019-04-06
0
486
Team Formation ZOJ - 3870 二进制运算
Team Formation ZOJ - 3870 For an upcoming programming contest, Edward, the headmaster of Marjar University, is for...
2019-04-06
0
504
lower_bound 和 upper_bound 的实现
lower_bound()返回的是要查找的数的最小下标,upper_bound()则返回的是最大下标 两者都是用二分查找,需要先排序。两者相减得到的则是一共有多少个要查找的数的个数减一 #include <cstdio> #include <algorithm> usi...
2019-03-27
0
595
lower_bound 和 upper_bound 的实现
lower_bound()返回的是要查找的数的最小下标,upper_bound()则返回的是最大下标 两者都是用二分查找,需要先排序。两者相减得到的则是一共有多少个要查找的数的个数减一 #include <cstdio> #include <algorithm> usi...
2019-03-27
0
574
STL string map vector set 的使用方法
不再详细介绍,直接用代码展示用法。 具体的介绍建议去官方一点的网站看,我在网上搜罗了一大堆,大多都写的不全面,有的还有错误。 建议去这个网站看,虽然是英文的但能看懂:http://www.cplusplus.com/reference/stl/ string code: #include ...
2019-03-20
0
458
STL string map vector set 的使用方法
不再详细介绍,直接用代码展示用法。 具体的介绍建议去官方一点的网站看,我在网上搜罗了一大堆,大多都写的不全面,有的还有错误。 建议去这个网站看,虽然是英文的但能看懂:http://www.cplusplus.com/reference/stl/ string code: #include ...
2019-03-20
0
441
单源最短路 dijkstra算法及其使用优先队列、邻接矩阵的优化
传统的dijkstra算法是维护一个集合和一个数组 在算法开始的时候,我们有一个集合X和一个数组dis. 起初将起点s加入集合,然后起点到起点的最短距离是0,dis[s] = 0; 接着我们不断的在剩下的顶点中找到一个离X最近的点v,并将该点加入到X中,然后更新dis。更新dis的原理是,比较原...
2019-03-16
0
448
单源最短路 dijkstra算法及其使用优先队列、邻接矩阵的优化
传统的dijkstra算法是维护一个集合和一个数组 在算法开始的时候,我们有一个集合X和一个数组dis. 起初将起点s加入集合,然后起点到起点的最短距离是0,dis[s] = 0; 接着我们不断的在剩下的顶点中找到一个离X最近的点v,并将该点加入到X中,然后更新dis。更新dis的原理是,比较原...
2019-03-16
0
428
首页
上一页
13
14
15
16
17
18
19
20
21
22
下一页
末页