摘要:
参考链接:https://baike.baidu.com/item/%E5%B0%BE%E9%80%92%E5%BD%92/554682?fr=aladdin 如果一个函数中所有递归形式的调用都出现在函数的末尾,我们称这个递归函数是尾递归的。当递归调用是整个函数体中最后执行的语句且它的返回值不属于表 阅读全文
摘要:
#include <iostream> #include <string> #include <algorithm> #include <vector> using namespace std; bool comp(int a, int b) { return a < b; } struct cus 阅读全文
摘要:
整数、浮点数转字符串 std::to_string 定义于头文件 <string> std::string to_string( int value ); (1) (C++11 起) std::string to_string( long value ); (2) (C++11 起) std::st 阅读全文