SDNUOJ 1118 单词统计 JAVA(s.indexOf())
Description
给定一个字符串和若干个单词,统计这些单词在这个字符串中出现的次数。
题目链接: http://www.acmicpc.sdnu.edu.cn/problem/show/1118
这题用C++做的话要用AC自动机过:https://fireworks99.github.io/2019/07/24/SDNUOJ-1118-%E5%8D%95%E8%AF%8D%E7%BB%9F%E8%AE%A1-AC%E8%87%AA%E5%8A%A8%E6%9C%BA/#more
JAVA暴力可过……
S.indexof(s, pos)
从指定的索引处开始,返回第一次出现的指定子字符串在此字符串中的索引,相当于c++的string里的s.find(str, pos)
其他相关函数:
- int indexOf(String str) :返回第一次出现的指定子字符串在此字符串中的索引.
- int lastIndexOf(String str) :返回在此字符串中最右边出现的指定子字符串的索引.
- int lastIndexOf(String str, int startIndex) :从指定的索引处开始向后搜索,返回在此字符串中最后一次出现的指定子字符串的索引。
Code
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30