主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
上岸课程
讨论区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
minozhao
2021年7月4日 23:19
先排序,再逐行parse后输出,坑:缩进是两个whitespace
P1279
回复 0
|
赞 1
|
浏览 8.4k
#include<iostream> #include<vector> #include<string> #include<algorithm> using namespace std; void whiteSpace(int deep){ for(int i = 0; i < deep; i++){ cout << " "; } } void printDirect(string s, int whitePrefix){ //完整地打印 s 的 ...
题目
路径打印
题解数量
1
发布题解
热门题解
1
先排序,再逐行parse后输出,坑:缩进是两个whitespace