C++
jingqiulyue
迭代升级中
展开
-
推荐 10 款 C++ 在线编译器
Coding GroundUrl:https://www.tutorialspoint.com/compile_cpp_online.phpCodechefUrl:https://www.codechef.com/ideGeeksforgeeksUrl:https://ide.geeksforgeeks.org/OnlineGDBOnlineGDB 支持到 C++14 的所有版本,它...原创 2020-03-29 11:01:58 · 5176 阅读 · 0 评论 -
VS运行cpp
必须要用ctrl+F5组合键运行程序,不然会出现界面闪退的情况. https://jingyan.baidu.com/article/358570f695deeace4724fc24.html转载 2018-08-27 13:11:02 · 6699 阅读 · 0 评论 -
Ubuntu下运行C/C++程序
https://www.linuxidc.com/Linux/2014-05/101844.htm https://my.oschina.net/hnuweiwei/blog/2272761.准备工作1.1 打开控制台:使用快捷键 Ctrl + Alt + T;1.2 安装vim:输入 sudo apt-get install vim;1.3 安装gcc:输入 sudo ap...原创 2018-08-28 06:51:52 · 23306 阅读 · 0 评论 -
STL - set
https://blog.csdn.net/ac_hexin/article/details/52042562 相同的值不存,存进去自动排序好了.元素的正向遍历:#include<iostream>#include<set>using namespace std;int main(){ set<int> s; s.insert(...原创 2018-08-28 09:39:54 · 159 阅读 · 0 评论 -
C++:查找字符串字串并替换
https://zhidao.baidu.com/question/497175897.htmlint main(){ string a;/////指定串,可根据要求替换 string b;////要查找的串,可根据要求替换 string c; cin>>a>>b>>c; int pos; pos = a.find(b);////查找指定的...原创 2018-08-28 21:51:16 · 13672 阅读 · 2 评论