使用指针定位字符串中char最后出现的位置(C语言)



函数定位ch在s所指向的字符串中最后出现的位置。它返回指向该字符的指针,如果ch不存在则返回空指针。我试图在不使用字符串库函数的情况下编写函数。

这就是我到目前为止得到的,对我来说似乎是正确的,但我似乎无法得到结果字符串。

#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h> 
#include <string.h> 
#include <math.h> 
char *strrchr2(char *s, char ch);
int main()
{
    char str1[100];
    char char1;
    char result_str[100];
    printf("nEnter a string: ");
    gets(str1);
    fflush(stdin);
    printf("Enter the target char in the string: ");
    scanf("%c", &char1);
    char * result_str = strrchr2(str1, char1);
    printf("Resultant string = %s", result_str);
char * strrchr2(char *s, char ch)
{
    int count = 0, offset = 0;
    while (*(s + count) != '')
    {
        if (*(s + count) == ch)
            offset = count;
        count++;
    }
    return *(s + offset);
}
预期输出:

Enter a string: abcdefdfdfghh
Enter the target char in the string: f
Resultant string: fghh
return *(s + offset);

您在这里返回字符s[offset]。你必须将指针返回到这个位置也就是(s + offset)

return (s + offset);
const char* strchr_last (const char* s, char ch)
{
  const char* found_at = NULL;
  while(*s != '')
  {
    if(*s == ch)
    {
      found_at = s;
    }
    s++;
  }
  return found_at;
}

您可以执行与查找字符串中第一次出现的字符相同的操作,只是做了一点更改:从末尾到开始扫描字符串。

char* strrchr2(char *s, char ch)
{
    char* p = s;
    int found_ch = 0;
    //finding the length of the string
    while (*p != '')
    {
        p++;
    }
    //p now points to the last cell in the string
    //finding the first occurrence of ch in s from the end:
    while (p >= s && !found_ch)
    {
        if (*p == ch)
        {
            found_ch = 1;
        }
        else
        {
            p--;
        }
    }
    if (!found_ch)
    {
        p = 0;
    }
    return p;
}

相关内容

  • 没有找到相关文章

最新更新