您好,欢迎光临本网站![请登录][注册会员]  

搜索资源列表

  1. 串数组习题:实现下面函数的功能。函数void insert(char*s,char*t,int pos)将字符串t插入到字符串s中,插入位置为pos。假设分配给字符串s的空间足够让字符串t插入。

  2. 此代码可以正常运行 #include #include // 第一种插入方式, 先把s的pos以后的字符串链接到t上,然后在将t插入到s的pos位置 void insert(char *s, char *t, int pos) { char *p=s, *q = t; int i = 0, lent = 0; if(pos<1) { printf(位置不合理\n); exit(0); } while(*p&&i<pos-1) { p++; i++;
  3. 所属分类:其它

    • 发布日期:2021-01-06
    • 文件大小:32768
    • 提供者:weixin_38519387