2037: 字符串比较,C语言HashMap的实现 摘要:解题思路:计算字符串的哈希值函数拉链法解决哈希冲突注意事项:参考代码:#include <stdio.h> #include <stdlib.h> #include <string.h> …… 题解列表 2021年07月26日 0 点赞 0 评论 444 浏览 评分:9.9
字符串组的使用 摘要:解题思路:注意事项:参考代码:# include <stdio.h># include <string.h>int main (){ int n; scanf ("%d",&n); …… 题解列表 2021年10月18日 0 点赞 0 评论 244 浏览 评分:9.9
C++ string 类 字符串比较 摘要:# string类 ```c++ #include"iostream" #include #include using namespace std; vectornums; int…… 题解列表 2023年06月04日 0 点赞 0 评论 136 浏览 评分:0.0
最普通的解题方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int i,n,c=0; scanf("%d",&n); …… 题解列表 2024年12月08日 0 点赞 0 评论 38 浏览 评分:0.0