gpt4 book ai didi

c - 在C中将字符串插入字符串

转载 作者:行者123 更新时间:2023-12-02 03:57:48 25 4
gpt4 key购买 nike

长度函数:

int length(const char s[])
{
int length = 0;
while(s[length]!='\0')
{
length++;
}

return length;
}

插入函数:

    void insert(char s1[], const char s2[], int n)
{
char *beginOfString = s1;
int lengthOfS1 = length(s1);
int lengthOfS2 = length(s2);
char s1Copy[lengthOfS1 + lengthOfS2];
int c, afterC, lengthOfRemainingPart;

c = 0;
c = n + 1;
beginOfString += c;
afterC = c; //nth position to start from to add onto array
lengthOfRemainingPart = length(beginOfString);
c = 0;

int counter = 0;
for(c = 0; c < length(s1) - 1; c++) {

s1Copy[c] = s2[counter];
for(c = afterC; c < (lengthOfS1 + lengthOfS2) - 1; c++) {
if(c == afterC) {
s1Copy[c] = s2[counter];
} else {
counter++;
if(s2[counter] != *"\0")
s1Copy[c] = s2[counter];
}
}
}
c = 0;

for(c = 0; c < length(s1Copy) - 1; c++) {
printf("\n %c \n", s1Copy[c]);
}

printf("\n");
printf("\n %s \n", beginOfString);
printf("\n %s \n", "LINE");
}

函数调用(和相关声明):

#define MAX_STR 20
char ab[MAX_STR + 1] = "Chicken and Chips";
char b[MAX_STR + 1] = "Scampi";
insert(ab, b, 7);

我试图将一个字符数组插入另一个字符数组,同时将其余字符保留在数组中,但根据用户想要根据 n 值插入字符数组的位置进行移动。

这似乎不起作用并且似乎输出了错误的值。函数调用和函数头(参数类型等)需要保持我的放置方式。只有函数体本身可以改变。

输出应该是“ChickenScampi and Chips”

有什么想法我哪里出错了吗?干杯。

最佳答案

不会粉饰它。这段代码一团糟。如果您只是这样做,那么您要完成的任务就会变得最简单

  • s1[] 中将 [0..min(n, lengthS1))(注意右侧的排他性)复制到您的目标。
  • s2[] 附加到目标。
  • s1[min(n, lengthS1)]s1[lengthS1] 附加到目标。
  • 终止字符串
  • 就是这样。

最重要的是,目标必须能够容纳两个字符串一个nulchar终止符,而你的目标缓冲区不这样做(它短了一个字符) .

不需要嵌套 for 循环。不管怎样,你的都被破坏了,因为它是在自己的索引变量上行走。

#include <stdio.h>

size_t length(const char s[])
{
const char *end = s;
while (*end)
++end;
return end - s;
}

void insert(const char s1[], const char s2[], int n)
{
size_t lengthOfS1 = length(s1);
size_t lengthOfS2 = length(s2);
size_t pos = (n < lengthOfS1) ? n : lengthOfS1;
size_t i;

// declare VLA for holding both strings + terminator
char s1Copy[lengthOfS1 + lengthOfS2 + 1];

// put in part/full s1, depending on length
for (i=0; i<pos; ++i)
s1Copy[i] = s1[i];

// append s2
for (i=0; i<lengthOfS2; ++i)
s1Copy[pos+i] = s2[i];

// finish s1 if needed.
for (i=pos; i<lengthOfS1; ++i)
s1Copy[i+lengthOfS2] = s1[i];

// termiante string
s1Copy[lengthOfS1 + lengthOfS2] = 0;

puts(s1Copy);
}

int main()
{
char ab[] = "Chicken and Chips";
char b[] = "Scampi";
insert(ab, b, 0);
insert(ab, b, 7);
insert(ab, b, 100);
}

输出

ScampiChicken and Chips
ChickenScampi and Chips
Chicken and ChipsScampi

摘要

如果您不确定发生了什么,您应该做的最后一件事就是编写更多代码。相反,停止编码,拿一些纸和书写工具,然后重新思考问题。

关于c - 在C中将字符串插入字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43215717/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com