我有这些字符串:
const char * date = "2001-02-03";
const char * id = "987654/3210";
我需要非常快速地转换为整数或长整数(对于 id)。我需要翻译比较(因为数字 strcmp() 很慢)。我只有这个库:
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <iostream>
示例: const char * date = "2001-02-03"; -> int int_date = 20010203; 常量字符 * id = "987654/3210"; -> long long_id = 9876543210;
怎么做?