Welcome To Learn Algorithms
题目
思路
1 2
| 遍历数组a,判断每个元素是否在b中出现。 如果数组a中存在一个元素不在b数组中,则数组a不是数组b的子数组。
|
解答
1 2 3 4 5 6 7 8 9 10 11 12 13 14
| const a = [2, 3, 6]; const b = [1, 2, 3, 4, 5, 6];
function isSubset(a, b) { let _isSubset = true; a.map(e =>{ if (b.indexOf(e) == -1) { _isSubset = false; } }) return _isSubset; };
console.log(isSubset(a, b))
|
Read More
题目
1
| 长度为n的数组乱序存放着0至n-1. 现在只能进行0与其他数的交换,完成以下函数。
|
解答
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
| public class Solution {
public void swapWithZero(int[] array, int len, int n) { Main.SwapWithZero(array, len, n); }
public void sort(int[] array, int len) { if (len <= 0) { return; } for (int index = len - 1; index >= 0; index--) { int temp = array[index]; if (temp == index) { continue; } if (temp != 0) { swapWithZero(array, len, temp); }
swapWithZero(array, len, index); } } }
|
Read More