字符串排序 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <strings.h>int main(){ int i,j,t=0,flag=0; char a[10…… 题解列表 2018年04月10日 0 点赞 1 评论 806 浏览 评分:0.0
1754: 字符串排序 摘要:解题思路:注意事项:参考代码:try: while True: # 读取字符串个数  …… 题解列表 2026年02月11日 0 点赞 0 评论 191 浏览 评分:0.0
1754: 字符串排序 摘要:#include<stdio.h>#include<string.h>#include<stdlib.h>#defi…… 题解列表 2025年12月10日 0 点赞 0 评论 248 浏览 评分:0.0
1754: 字符串排序 摘要: #include using namespace std; const int N=100010; string a[N]; bool cmp(stri…… 题解列表 2023年12月24日 0 点赞 0 评论 602 浏览 评分:0.0
字符串排序java 摘要:解题思路:注意事项:参考代码:public class Test { public static void main(String[] args) { Scanner scanne…… 题解列表 2023年10月13日 0 点赞 0 评论 427 浏览 评分:0.0
结构体简化排序 摘要:解题思路:用结构体方式储存字符串以及字符串的长度 可以更方便地进行排序注意事项:参考代码:typedef struct str{ char str[101]; int len;}st;int main…… 题解列表 2023年02月07日 0 点赞 0 评论 444 浏览 评分:0.0
字符串排序-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<cstdio> #include<vector> #include<algorithm> #include<string> #include<i…… 题解列表 2020年08月07日 0 点赞 0 评论 763 浏览 评分:0.0
字符串排序-题解(C语言代码) 摘要: #include <iostream> #include <string.h> #include <cstring> #include <vector> using namespa…… 题解列表 2020年07月03日 0 点赞 0 评论 1022 浏览 评分:0.0
字符串排序-题解(C++代码) 摘要:```cpp #include #include #include #include using namespace std; typedef struct str{ ch…… 题解列表 2020年03月16日 0 点赞 0 评论 843 浏览 评分:0.0
字符串排序-题解(C语言代码) 摘要:#include #include #include int cmp( const void*q,const void*w) { return strlen((char*)q)-str…… 题解列表 2019年08月06日 0 点赞 0 评论 1411 浏览 评分:0.0