题解 2847: 找第一个只出现一次的字符

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

找第一个只出现一次的字符

摘要:解题思路:注意事项:参考代码:a=input()for i in a:    if a.count(i)==1:        print(i)        breakelse:    print(……

collections.OrderedDict 有序字典

摘要:# 解题思路 1. 通过collections.OrderedDict统计字母个数,以空间换时间,降低查找的时间复杂度。 2. 时间复杂度为O(nlogn),空间复杂度为O(n) # 代码 ……

双循环遍历

摘要:# 纯纯打表 ```c++ #include #include using namespace std; char str[10000]; int f[26]; int main() ……

continue,break

摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> int main() {     char A[100001];     scanf(……