原创 【面試題】給定一個僅包含字母和數字(0-9)的字符串,要求找到最長遞增的數字串

#include <iostream> #include <stdio.h> #include <stdlib.h> using namespace std; bool isDigit(char c) { if(c >= '0' &&