zb-字符串插入-C++ 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;#include<string>int main(){ string s,t; c…… 题解列表 2022年02月07日 0 点赞 0 评论 85 浏览 评分:0.0
数据结构-字符串插入(C代码) 摘要:方法一: 链表解题思路: 链表的建立 + 两个链表的连接注意事项:参考代码:#include<stdio.h>#include<string.h>#include<stdlib.h…… 题解列表 2022年01月23日 0 点赞 0 评论 308 浏览 评分:9.9
1688: 数据结构-字符串插入 摘要:#include<bits/stdc++.h> using namespace std; int main(){ string a,b; int n; cin >…… 题解列表 2021年12月23日 0 点赞 0 评论 233 浏览 评分:9.9
用到两个数组 摘要:解题思路:一直输出第一个数组,当到达指定位置时,输出第二个数组注意事项:参考代码:#include <stdio.h>int main(){ char a[1000],b[1000]; i…… 题解列表 2021年06月16日 0 点赞 0 评论 164 浏览 评分:0.0
没看到Java的题解自己写一篇 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class C1688{ public static void main(String[] args){ …… 题解列表 2021年06月07日 0 点赞 0 评论 235 浏览 评分:8.7
数据结构-字符串插入(C语言描述) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> int main() { char a[256]={'\0'…… 题解列表 2021年04月11日 0 点赞 0 评论 214 浏览 评分:9.9
数据结构-字符串插入(C语言) 摘要:解题思路:把stra从i处拆开,i后内容存储到临时字符串把strb连接到stra的i处把temp连接到stra的末尾注意事项:参考代码:#include <stdio.h> /**在目标字符串的…… 题解列表 2021年04月07日 0 点赞 0 评论 258 浏览 评分:0.0
数据结构-字符串插入-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include#include#define N 127//限制长度为127int main(){ char a[N],b[N]; int i,n,leng…… 题解列表 2020年12月14日 0 点赞 1 评论 412 浏览 评分:6.0
数据结构-字符串插入-题解(C语言代码) 摘要:```c #include #include int main() { char a[200], b[200]; int n; scanf("%s",&a); scanf("%…… 题解列表 2020年10月15日 0 点赞 0 评论 334 浏览 评分:0.0
数据结构-字符串插入-题解(C语言代码) 摘要:解题思路:其实直接输出就可注意事项:注意保存的位置是n-1参考代码:#include<stdio.h>#include<string.h>char a[127];char b[127];int mai…… 题解列表 2020年09月18日 0 点赞 0 评论 377 浏览 评分:9.9