include
-
C++ 第9课字符三角形
#include <iostream> #include <string> using namespace std; int main(int argc, …
-
C++ 第10.11课史蒂夫雕像
#include <iostream> #include <string> #include “minecraft.h” using namespace s…
-
C++ 第40课转进制
#include <iostream> #include <string> using namespace std; int main() { /*stri…
-
Mondriaan's Dream(状压dp)
Mondriaan’s Dream(状压dp) 题目大意:用1×2的方块填满NxM的大矩形,问填满的方法有多少种。解题思路:利用先填好竖着的方块,剩下的空格再…
-
UVA11584 划分成回文串 Partitioning by Palindromes
题面 这道题一开始想用简单的区间DP #include<stdio.h> #include<iostream> #include<cs…
-
1.关于输入
一、cin>> 用法1:输入一个数字或字符 #include <iostream>using namespace std;main (){int a,b;c…
-
有趣的字符串copy函数
1 #include <iostream> 2 #include <iomanip> 3 #include <string> 4 using n…
-
cannot open source file "windows.h"的解决方法
1.在资源浏览器检索SDK(一般是检索C盘),找到Windows SDK的安装目录(名字一般是Microsoft SDKs),并确认里面不是空。 2.如果检索不到Windows…
-
Linux 网络编程 实现双方通信
//服务端 #include <stdio.h>#include <stdlib.h>#include <sys/types.h> #inclu…
-
Linux IO多路复用
https://segmentfault.com/a/1190000003063859 / select poll epoll 操作方式 遍历 遍历 回调 底层实现 数组 链表 哈…