当前位置:   article > 正文

华为OD机试真题-测试用例执行计划_华为od 某个产品当前送代周期内有n个特性({f1,f2,,,fn})需要进行覆盖测试,每个特

华为od 某个产品当前送代周期内有n个特性({f1,f2,,,fn})需要进行覆盖测试,每个特

测试用例执行计划


题目描述:

某个产品当前迭代周期内有N个特性({F1,F2,...,FN})需要进行覆盖测试,每个特性都被评估了对应的优先级,特性使用其ID作为下标进行标识。
设计了M个测试用例({T1,T2,...,TM}),每个用例对应了一个覆盖特性的集合,测试用例使用其ID作为下标进行标识,测试用例的优先级定义为其覆盖的特性的优先级之和。
在开展测试之前,需要制定测试用例的执行顺序,规则为:优先级大的用例先执行,如果存在优先级相同的用例,用例ID小的先执行。

输入描述:

第一行输入为N和M,N表示特性的数量,M表示测试用例的数量,0<N<100.0<M<100.之后N行表示特性ID=1到特性ID=N的优先级。
再接下来M行表示测试用例ID=1到测试用例ID=M关联的特性的ID的列表。

输出描述:

按照执行顺序(优先级从大到小)输出测试用例的ID,每行一个ID.


备注:

测试用例覆盖的ID不重复。

示例:

输入

5 4

1

1

2

3

5

1 2 3

1 4

3 4 5

2 3 4


输出

3

4

1

2

说明

 解题思路:

  1. 首先读取特性的数量N和测试用例的数量M,以及每个特性的优先级。
  2. 然后,对于每个测试用例,读取它覆盖的特性ID列表,并计算测试用例的优先级(即它覆盖的所有特性的优先级之和)。
  3. 将测试用例按照优先级进行排序,如果优先级相同,则按照ID从小到大排序。
  4. 最后,输出排序后的测试用例ID。

代码:

Java实现

  1. import java.util.ArrayList;
  2. import java.util.Collections;
  3. import java.util.List;
  4. import java.util.Scanner;
  5. class TestCase implements Comparable<TestCase> {
  6. int id;
  7. int priority;
  8. public TestCase(int id, int priority) {
  9. this.id = id;
  10. this.priority = priority;
  11. }
  12. // 实现Comparable接口,首先按照优先级降序排序,若优先级相同,则按照ID升序排序
  13. @Override
  14. public int compareTo(TestCase other) {
  15. if (this.priority != other.priority) {
  16. return other.priority - this.priority;
  17. } else {
  18. return this.id - other.id;
  19. }
  20. }
  21. }
  22. public class Main {
  23. public static void main(String[] args) {
  24. Scanner scanner = new Scanner(System.in);
  25. int N = scanner.nextInt();
  26. int M = scanner.nextInt();
  27. scanner.nextLine(); // 读取并跳过行尾的换行符
  28. // 读取每个特性的优先级
  29. int[] featurePriorities = new int[N];
  30. for (int i = 0; i < N; i++) {
  31. featurePriorities[i] = scanner.nextInt();
  32. }
  33. List<TestCase> testCases = new ArrayList<>();
  34. for (int i = 0; i < M; i++) {
  35. scanner.nextLine(); // 读取并跳过行尾的换行符
  36. String[] coveredFeatures = scanner.nextLine().split(" ");
  37. int prioritySum = 0;
  38. for (String featureIdStr : coveredFeatures) {
  39. int featureId = Integer.parseInt(featureIdStr) - 1; // 特性ID转换为数组下标
  40. prioritySum += featurePriorities[featureId];
  41. }
  42. testCases.add(new TestCase(i + 1, prioritySum)); // 测试用例ID是从1开始的
  43. }
  44. // 根据优先级和ID对测试用例进行排序
  45. Collections.sort(testCases);
  46. // 输出排序后的测试用例ID
  47. for (TestCase testCase : testCases) {
  48. System.out.println(testCase.id);
  49. }
  50. }
  51. }

解析:

这个程序首先定义了一个TestCase类,其中包含测试用例的ID和优先级,并实现了Comparable接口以定义排序规则。接着,程序读取输入数据,计算每个测试用例的优先级,并将它们添加到一个列表中。最后,程序根据测试用例的优先级和ID对测试用例进行排序,并按顺序输出测试用例的ID。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/953080
推荐阅读
相关标签
  

闽ICP备14008679号