皮皮灰灰辉
皮皮灰灰辉
全部文章
题解
归档
标签
去牛客网
登录
/
注册
皮皮灰灰辉的博客
全部文章
/ 题解
(共1篇)
题解 | #找出字符串中第一个只出现一次的字符#
牛客上c语言不方便使用hash表,便用数组存放次数,遍历两边字符串即可 #include <stdio.h> #include <stdlib.h> #include <string.h> int main() { char str[1005] = {0...
C
模拟
字符串匹配
2022-03-18
0
338