摘要:
今天用算法函数中的copy来复制字符数组时出现了这个错误 错误 C4996 'std::copy::_Unchecked_iterators::_Deprecate': Call to 'std::copy' with parameters that may be unsafe - this cal 阅读全文
摘要:
#include "stdafx.h" #include #include using namespace std; #define ERROR -1 #define RIGHT 0 #define CHECK_EMPTY(stack) if (stack.empty()) \ {\ return ERROR;\ } //用来输出提示信息的 #define PRINT_STEP 0 ... 阅读全文