计算字符串中指定字符最大连续出现的次数
Posted zhuzhen
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了计算字符串中指定字符最大连续出现的次数相关的知识,希望对你有一定的参考价值。
//连中次数
public static int LzNum(String str) { // 分割成数组 char[] c = str.toCharArray(); // 定义一个记住最大次数的变量 int max = 0; // 循环比较 for (int i = 0; i < c.length; i++) { // 定义一个中间值 int is = 1;// 以为是两两比较所以中间会上一次,就像断木头一样,你想想哈 for (int j = i; j < c.length - 1; j++) { if (c[j] == c[j + 1] && c[j] == ‘1‘) { is++; } else { break; } if (is > max) { max = is; } } } return max; }
以上是关于计算字符串中指定字符最大连续出现的次数的主要内容,如果未能解决你的问题,请参考以下文章
pandas使用len函数和max函数计算dataframe中指定字符串数据列中字符串的最大长度并使用np.where函数筛选dataframe中字符串的最大长度所对应的数据行
pandas使用len函数和max函数计算dataframe中指定字符串数据列中字符串的最大长度(length of the longest string in a column)