数据结构-字符串插入(C语言) 摘要:解题思路:把stra从i处拆开,i后内容存储到临时字符串把strb连接到stra的i处把temp连接到stra的末尾注意事项:参考代码:#include <stdio.h> /**在目标字符串的…… 题解列表 2021年04月07日 0 点赞 0 评论 260 浏览 评分:0.0
数据结构-字符串插入(C语言描述) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> int main() { char a[256]={'\0'…… 题解列表 2021年04月11日 0 点赞 0 评论 215 浏览 评分:9.9
没看到Java的题解自己写一篇 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class C1688{ public static void main(String[] args){ …… 题解列表 2021年06月07日 0 点赞 0 评论 235 浏览 评分:8.7
用到两个数组 摘要:解题思路:一直输出第一个数组,当到达指定位置时,输出第二个数组注意事项:参考代码:#include <stdio.h>int main(){ char a[1000],b[1000]; i…… 题解列表 2021年06月16日 0 点赞 0 评论 166 浏览 评分:0.0
1688: 数据结构-字符串插入 摘要:#include<bits/stdc++.h> using namespace std; int main(){ string a,b; int n; cin >…… 题解列表 2021年12月23日 0 点赞 0 评论 235 浏览 评分:9.9
数据结构-字符串插入(C代码) 摘要:方法一: 链表解题思路: 链表的建立 + 两个链表的连接注意事项:参考代码:#include<stdio.h>#include<string.h>#include<stdlib.h…… 题解列表 2022年01月23日 0 点赞 0 评论 309 浏览 评分:9.9
zb-字符串插入-C++ 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;#include<string>int main(){ string s,t; c…… 题解列表 2022年02月07日 0 点赞 0 评论 86 浏览 评分:0.0
Hfifipsysta-1688-数据结构-字符串插入(C++代码) 摘要:```cpp #include #include using namespace std; int main(){ string a,b; int pos; …… 题解列表 2022年02月12日 0 点赞 0 评论 138 浏览 评分:0.0
1688题解python 摘要:解题思路:a,b和c的类型不同,但必须在同一行输入,所以先把A,B,C输入为同一类型,在第二行再把C改成整数型注意事项:参考代码:a,b,c=list(map(str,input().split())…… 题解列表 2022年03月09日 0 点赞 0 评论 168 浏览 评分:9.9
数据结构-字符串插入[c 语言] 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> // 字符串插入 int main(int argc, char *argv[])…… 题解列表 2022年04月05日 0 点赞 0 评论 373 浏览 评分:9.9