码迷,mamicode.com
首页 >  
搜索关键字:namespace 命名空间    ( 47219个结果
弹跳小球C语言
1 #include <iostream> 2 #include <cstdlib> 3 #include <Windows.h> 4 using namespace std; 5 6 int main() 7 { 8 int i, j; 9 int x = 0; 10 int y = 5; 11 ...
分类:编程语言   时间:2021-05-24 10:59:22    阅读次数:0
19【综合案例:基于STL的演讲比赛流程管理系统】
SpeechContest.cpp 1 #include<iostream> 2 #include<cstdlib> 3 using namespace std; 4 #include "speechManager.h" 5 #include<map> 6 #include "speaker.h" ...
分类:其他好文   时间:2021-05-24 10:20:22    阅读次数:0
CF1245D Shichikuji and Power Grid
思路: 图论。参考了https://codeforces.com/blog/entry/71080。 实现: 1 #include<bits/stdc++.h> 2 using namespace std; 3 typedef long long ll; 4 const ll INF = 0x3f3 ...
分类:其他好文   时间:2021-05-24 08:39:17    阅读次数:0
I thought i know docker until i saw busybox
都知道虚拟机和docker的区别,虚拟机是每个虚拟机内跑独立的os,os层面隔离。docker是同一个os上,使用linux的namespace机制做资源隔离,为什么我们docker image还需要依赖一个linux的发行版,一般最小是busybox呢,那我的进程跑起来,到底是用我容器内的os还是 ...
分类:其他好文   时间:2021-05-24 08:29:24    阅读次数:0
PTA basic 1084 外观数列 (20 分) c++语言实现(g++)
外观数列是指具有以下特点的整数序列: d, d1, d111, d113, d11231, d112213111, ... 它从不等于 1 的数字 d 开始,序列的第 n+1 项是对第 n 项的描述。比如第 2 项表示第 1 项有 1 个 d,所以就是 d1;第 2 项是 1 个 d(对应 d1)和 ...
分类:编程语言   时间:2021-05-24 08:25:54    阅读次数:0
Cpp primer plus notes
Cpp primer plus notes ch2. get start #include 预处理器编译指令。 using namespace 编译指令。 void关键字显示说明不接受任何参数。 //myfirst.cpp #include <iostream> int main(void) { u ...
分类:其他好文   时间:2021-05-24 08:11:29    阅读次数:0
双指针
###双指针算法: 核心思想就是缩减时间复杂度 for (int i = 0; i < n; i++) { for (int j = 0; j < n; j++) { 时间复杂度是O(n * n) } } 双指针模板 for (i = 0; j = 0; j < n; j++) { while (j ...
分类:其他好文   时间:2021-05-24 08:01:14    阅读次数:0
RC-[CF]101028J-X and Beasts
是个背包问题,很彻底的背包,故记录一下 题意:X想升级武器,有n个商店,第i个商店提供能量为ai的能量包,当ai可以被2n整除时,武器可以升n级,且X每次购买的能量包所包含的能量必须严格递增。问武器最多能升多少级 没啥特别的思路,就是彻底背包,直接上(抄的)码 1 #include <bits/st ...
分类:其他好文   时间:2021-05-24 07:37:04    阅读次数:0
16.8.1【set容器的基本概念、构造和赋值】
#include<iostream> #include<cstdlib> using namespace std; #include<set> /* 3.8 set/multiset容器 3.8.1 set基本概念 简介:所有元素都会在插入时自动被排序 本质:set/multiset属于关联式容器, ...
分类:其他好文   时间:2021-05-24 06:37:16    阅读次数:0
16.8.2【set容器的大小和交换、插入和删除、查找和统计】
1 #include<iostream> 2 #include<cstdlib> 3 using namespace std; 4 #include<set> 5 6 7 /* 8 3.8.3 set容器大小和交换 9 10 size(); //返回容器中元素的数目 11 empty(); //判断 ...
分类:其他好文   时间:2021-05-24 06:33:00    阅读次数:0
47219条   上一页 1 ... 10 11 12 13 14 ... 4722 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!