2009年腾讯校园招聘笔试题! 不使用任何中间变量求一个const字符串长度

具体题目是不使用中间变量实现strlen函数,(strlen为c语言里面求字符串长度库函数)。

给出了一个函数声明:

int strlen(const char *p);

虽然我没有参加,但是听人家这么说起这个题目,呵呵方便大家看看!

这里给出我的实现,希望高手指点!

  1. intstrlen_my(constchar*p);
  2. intmain(){
  3. constchar*p="ok!";
  4. inta=strlen_my(p);
  5. }
  6. intstrlen_my(constchar*p){
  7. if(p==NULL)
  8. {
  9. return0;
  10. }
  11. if(*p=='\0')
  12. {
  13. return0;
  14. }
  15. else
  16. return1+strlen_my(++p);
  17. }

呵呵,腾讯居然不给我笔试机会,哎,水平太垃圾了,投哪个公司人家受笔试,我受鄙视!

你可能感兴趣的:(C++,c,C#,腾讯,招聘)