摘要:
一个数组中有一个重复的数字,时间复杂度O(n),空间复杂度O(1) 找出来 #include <iostream>#include<stdlib.h>using namespace std;int main(){ int n = 1001; int *a = new int[n]; for (int 阅读全文
摘要:
一个数组中有一个重复的数字,空间复杂度O(1),时间复杂度O(n)找出那个重复的数字。public class QuChong { public static void main(String[] args) { int n = 4; int[] arr = {1, 2, 3, 2}; int x 阅读全文