字符串问题 java双指针原地逆序O(n)复杂度 摘要:import java.util.Scanner; public class Main { //时间复杂度 O(n) public static void main(Stri…… 题解列表 2022年07月04日 0 点赞 0 评论 114 浏览 评分:9.9
字符串问题(c语言递归) 摘要:```c #include #include void swap(char *s1,char* s2); void reverse(char* strs,int left,int righ…… 题解列表 2023年04月29日 0 点赞 0 评论 172 浏览 评分:9.9
Manchester-【字符串问题】 摘要:### 解题思路: 1. 法一:输入一个字符串,求其长度,然后从最后一个字符一次向前输出 1. 法二:把字符串存入栈,然后把栈中元素pop出来 1. 以上两种方法本质上一样,这里采用第二种方…… 题解列表 2020年03月13日 0 点赞 0 评论 1060 浏览 评分:9.9
字符串问题-题解(C语言代码) 摘要:参考代码:#include<iostream> using namespace std; int main(){ string str; cin >> str; fo…… 题解列表 2021年02月02日 0 点赞 0 评论 509 浏览 评分:9.9
我奶奶都会 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){ int i; char a[300]; gets(a)…… 题解列表 2023年06月18日 0 点赞 0 评论 310 浏览 评分:9.9
字符串问题-题解(C++代码) reverse -- 又一个实用小技巧 摘要:题目描述 字符串处理在计算机中有很多复杂的操作,但是这些复杂的操作都是由基本的字符串操作复合而成,要求编写一字符串颠倒的程序,把字符串中的字符颠倒位置。 ------------ 输入 …… 题解列表 2020年05月18日 0 点赞 0 评论 893 浏览 评分:9.9
java--study||O.o 摘要:参考代码:import java.util.Scanner; public class Main { public static void main(String[] args) { Sc…… 题解列表 2024年01月30日 0 点赞 0 评论 93 浏览 评分:9.9
字符串问题-题解(C语言代码)值得参考 摘要:###### 参考代码: #include #include int main() { char a[200],t; gets(a); …… 题解列表 2019年12月01日 0 点赞 1 评论 772 浏览 评分:9.6
字符串问题 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char str[300]; int i; while(g…… 题解列表 2017年09月08日 2 点赞 0 评论 1725 浏览 评分:9.5
字符串问题-题解(C语言代码) 摘要:本题比较简单,大致思路如下: 读入字符串,遍历倒序输出。 我觉得注意的就是方法的选择,以及相应知识点的运用。 第一种方法是最简单的直接倒序输出: ```c #include #includ…… 题解列表 2019年06月22日 1 点赞 0 评论 462 浏览 评分:8.0