赞
踩
注意
代码
#include<stdio.h> #include<string.h> int titleToNumber(char * columnTitle){ int len =strlen(columnTitle); if (len==0) { return 0; } long res=0,i; for(i=0;i<len;i++){ res = res*26 + columnTitle[i]-64; } return res; }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。