文章列表

筛选

个人笔记转自作者pycode(侵权删)

摘要:# MarkDown编辑器基本使用说明 **如果这是您第一次使用MarkDown编辑器,建议先阅读这篇文章了解一下Markdown的基本使用方法。** ## 实时预览、全屏显示 ![……

铺砖问题,p196

摘要: #include #include #include using namespace std; static const ……

OJ中多输入多输出问题

摘要:## 关于OJ中多输入多输出的问题 ** 最近刚入门编程,开始着手做普及题,其中好多的问题都涉及到多输入多输出问题,即题目没有明确说明输入数据到底有多少组。对于此类问题解决的方法如下:** ……

旅行商问题

摘要: #include #include #include using namespace std; static const ……

树状数组,

摘要: #include #include using namespace std; static const int MAX = 5000;……