这一类问题的出现,主要有几个原因:
a. 您的程序使用了全局变量或者自定义的类内变量。
力扣的判题机在读取您的代码后,对每个测试用例,都会初始化一次类,但全局变量和类内静态变量需要您手动初始化。例如,在第一题(两数之和)的判题过程中:
1
2
3
4
5
6
7
8
9
10
|
int globalVariable = 0; class Solution { public : int classVariable = 0; vector< int > twoSum(vector< int >& nums, int target) { classVariable++; globalVariable++; return {classVariable, globalVariable}; }; }; |
这样的代码在运行两次test case后,输出的结果会是[1, 1], [1, 2]。
为了避免这样的问题,一般有两种解决方法:
1、避免申明类内静态变量以及全局变量。
2、在 twoSum 内对全局变量初始化。
b. 您的代码存在细微的问题,如变量没有初始化。
在使用中遇到题目问题,也可至 力扣圈子 进行题目交流,发布时描述清楚您的问题及使用场景,以获得更好的支持哟~
转自LeetCode。传送门:https://support.leetcode-cn.com/hc/kb/article/1194344/