void incString(std::string &strTemp)
{
int iLen = strTemp.length();
int iFlag = 0;
for (int i = 0 ; i < iLen ; i++)
{
if ('9' == strTemp[iLen-i-1])
{
strTemp[iLen-i-1] = '0';
}
else
{
strTemp[iLen-i-1]++;
iFlag = 1;
break;
}
}
if (0 == iFlag)
{
strTemp.insert(strTemp.begin(), '1');
}
}