摘要:
string 常用相关操作 求字符串的长度 string s = "asdf" s.size() s.length() int和string互相转换 #include <iostream> #include <sstream> #include <string> using namespace st 阅读全文
摘要:
itertools.permutations() itertools.permutations(iterable, r=None) 连续返回由 iterable 元素生成长度为 r 的排列。 如果 r 未指定或为 None ,r 默认设置为 iterable 的长度,这种情况下,生成所有全长排列。 阅读全文