基础
墨白纸黑
新手上路,坚持为主
展开
-
结构体排序
//sort #include <iostream> #include <algorithm> #include <cstring> using namespace std; struct ss { int x;//结构体中不能有string }; bool f(ss s1,ss s2); int main() { ss a[10]; f...原创 2019-03-25 20:47:13 · 379 阅读 · 0 评论 -
不定长数组:vector
/*1.vector:在使用它时,需要包含头文件vector,#include<vector>. vector 容器与数组相比其优点在于它能够根据需要随时 自动调整自身的大小以便容下所要放入的元素,提供了许 多的方法来对自身进行操作.*/ /*2.初始化:vector<int> a ; ...原创 2019-04-10 21:00:16 · 376 阅读 · 0 评论 -
算法竞赛入门经典(第二版)(第一章)
#include <iostream> #include <cstdio> #include <cmath> using namespace std; int main() { /*int a,b,c; double y; scanf("%d%d%d",&a,&b,&c); printf("%.3f",(a...原创 2019-04-03 20:13:13 · 230 阅读 · 0 评论 -
算法竞赛入门经典(第二版)(第二章)
#include <iostream> #include <cmath> #include <algorithm> #include <cstdio> #include <ctime> #include <iomanip> #include <cstring> using namespace std; /*#def...原创 2019-04-03 20:14:13 · 211 阅读 · 0 评论 -
数据结构(一)
数据结构概述 定义 我们如何把现实中复杂而大量的问题以特定的数据结构 和特定的存储功能保存到主存储器(内存)中,以及在 此基础上实现某个功能而执行的相应操作,这个相应的 操作叫算法 数据结构=个体+个体关系 算法(狭义)=对存储数据的操作 算法 算法是解题的方法和步骤 衡量算法复杂度 1.时间复杂度 大概程序要执行的次数...原创 2019-07-13 08:48:33 · 118 阅读 · 0 评论