2925 ******自己复习用********** 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>#include <stdbool.h>int main()…… 题解列表 2024年12月03日 0 点赞 0 评论 48 浏览 评分:9.9
旧物有情 # sstream和set单词排序 摘要:``` #include #include #include #include #include using namespace std; int main() { …… 题解列表 2024年10月10日 0 点赞 0 评论 28 浏览 评分:0.0
2925: 单词排序 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <stdlib.h> #include <stri…… 题解列表 2024年09月06日 0 点赞 0 评论 58 浏览 评分:9.9
2925: 单词排序 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; struct u { &nbs…… 题解列表 2024年01月23日 0 点赞 1 评论 38 浏览 评分:6.0
单词排序(%s是不读取空格的,遇到空格会停止读取,可以整个二维数组存储单词) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> int main() { char a[2…… 题解列表 2023年10月25日 1 点赞 0 评论 151 浏览 评分:8.0
单词排序(利用sort排序和set去重) 摘要:解题思路:注意事项:参考代码:#include <iostream> #include <cstring> #include <algo…… 题解列表 2023年07月28日 0 点赞 0 评论 89 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h> int main() { …… 题解列表 2023年06月20日 0 点赞 0 评论 121 浏览 评分:6.0
单词排序(Java) 摘要:解题思路:先以空格分隔字符串,转为数组,接着去除多余空格,排序·然后去除重复单词注意事项:一直通过不了但没找出问题,求助!!!参考代码:import java.util.Arrays;import j…… 题解列表 2023年06月15日 0 点赞 0 评论 117 浏览 评分:2.0
编写删除相同的单词函数+冒泡法排序函数 摘要:解题思路:先删除相同字母,再排序,最后进行输出注意事项:参考代码:#include<stdio.h>#include<string.h>//删除重复的单词int d…… 题解列表 2023年01月16日 0 点赞 0 评论 139 浏览 评分:0.0
2925: 单词排序 摘要:解题思路:注意事项:参考代码://字符串的排序(冒泡排序) #include <stdio.h> #include <string.h> int&nb…… 题解列表 2022年10月28日 0 点赞 2 评论 373 浏览 评分:8.7