题目连接:http://www.rqnoj.cn/Problem_399.html 解题思路:对字符串中出现的字符逐一统计,找到最大值和最小值。 #include <stdio.h>#include <string.h>const int N = 105;const int M = 26;bool isPrime(int cur) {for (int i = 2; i < cur; i
题目列表 3162. 优质数对的总数 I 3163. 压缩字符串 III 3164. 优质数对的总数 II 3165. 不包含相邻元素的子序列的最大和 一、优质数对的总数I 这里由于数据范围比较小,我们可以直接暴力枚举,代码如下 class Solution {public:int numberOfPairs(vector<int>& nums1, vector<int>& n
给出方程式 A / B = k, 其中 A 和 B 均为代表字符串的变量, k 是一个浮点型数字。根据已知方程式求解问题,并返回计算结果。如果结果不存在,则返回 -1.0。 示例 : 给定 a / b = 2.0, b / c = 3.0 问题: a / c = ?, b / a = ?, a / e = ?, a / a = ?, x / x = ? 返回 [6.0, 0.5, -1.0, 1
399.Which of the following is not an advantage of block media recovery (BMR)? A. Reduced MTTR. B. Datafiles remain offline while corrupt blocks are repaired. C. Datafiles remain online while corrup