题解 2847: 找第一个只出现一次的字符 摘要:#include#includeusing namespace std;char str[100010];int cnt[26];int main(){ cin >> str; for(i…… 题解列表 2023年08月15日 0 点赞 0 评论 260 浏览 评分:9.9
2847题: 找第一个只出现一次的字符 摘要:解题思路:双重循环遍历注意事项:int count=0;要在第一个循环内部参考代码: Scanner sc=new Scanner(System.in); String s = s…… 题解列表 2024年03月17日 0 点赞 0 评论 208 浏览 评分:9.9
找到第一个仅出现一次的字符。 摘要:解题思路:注意事项:参考代码://题目描述//给定一个只包含小写字母的字符串,请你找到第一个仅出现一次的字符。//如果没有,输出no。//输入格式//一个字符串,长度小于100000。//输出格式//…… 题解列表 2023年01月08日 0 点赞 0 评论 818 浏览 评分:9.9
HashMap中方法getOrDefault 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; import java.util.Map; import java.util.HashMap; public c…… 题解列表 2023年11月02日 0 点赞 0 评论 148 浏览 评分:9.9
2847: 找第一个只出现一次的字符 摘要:解题思路:注意事项:参考代码:n=input()flag=Falsefor i in n: if n.count(i)==1: print(i) flag=True …… 题解列表 2023年11月24日 0 点赞 0 评论 222 浏览 评分:9.9
找第一个只出现一次的字符 摘要:解题思路:注意事项:参考代码:a=input()for i in a: if a.count(i)==1: print(i) breakelse: print(…… 题解列表 2023年06月09日 0 点赞 1 评论 327 浏览 评分:9.9
collections.OrderedDict 有序字典 摘要:# 解题思路 1. 通过collections.OrderedDict统计字母个数,以空间换时间,降低查找的时间复杂度。 2. 时间复杂度为O(nlogn),空间复杂度为O(n) # 代码 …… 题解列表 2023年05月22日 0 点赞 1 评论 328 浏览 评分:9.9
找第一个只出现一次的字符(C语言)(简单) 摘要: #include #include int main() { char a[100000]; gets(a); int y =…… 题解列表 2024年11月25日 0 点赞 0 评论 214 浏览 评分:9.9
题解 2847: 找第一个只出现一次的字符 摘要: #include using namespace std; const int N=100000; char a[N]; int cnt[26]; …… 题解列表 2023年12月19日 0 点赞 0 评论 90 浏览 评分:9.9
菜鸟的java循环解法 摘要:解题思路:两层循环嵌套,外层选出某一字符,里层带着此字符对字符串遍历,记录字符出现的次数,如为一则输出,跳出循环。注意事项:参考代码:import java.util.Scanner;public c…… 题解列表 2022年11月02日 0 点赞 1 评论 386 浏览 评分:9.9