题解 1688: 数据结构-字符串插入

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

数据结构-字符串插入(C语言)

摘要:解题思路:把stra从i处拆开,i后内容存储到临时字符串把strb连接到stra的i处把temp连接到stra的末尾注意事项:参考代码:#include <stdio.h> /**在目标字符串的……

用到两个数组

摘要:解题思路:一直输出第一个数组,当到达指定位置时,输出第二个数组注意事项:参考代码:#include <stdio.h>int main(){    char a[1000],b[1000];    i……

数据结构-字符串插入(C代码)

摘要:方法一:     链表解题思路:    链表的建立  +   两个链表的连接注意事项:参考代码:#include<stdio.h>#include<string.h>#include<stdlib.h……

zb-字符串插入-C++

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;#include<string>int main(){    string s,t;    c……

1688题解python

摘要:解题思路:a,b和c的类型不同,但必须在同一行输入,所以先把A,B,C输入为同一类型,在第二行再把C改成整数型注意事项:参考代码:a,b,c=list(map(str,input().split())……

数据结构-字符串插入[c 语言]

摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> // 字符串插入 int main(int argc, char *argv[])……