List<int> A = new List<int>() { 1, 1, 2, 3, 3 };
List<int> B = new List<int>() { 1, 3 };
想把A的值基于B去掉
变成
List<int> A = new List<int>() { 1, 2, 3};
应该用什么方法来处理这种情况
List<int> A = new List<int>() { 1, 1, 2, 3, 3 };
List<int> B = new List<int>() { 1, 3 };
想把A的值基于B去掉
变成
List<int> A = new List<int>() { 1, 2, 3};
应该用什么方法来处理这种情况
先排序,然后按顺序同时遍历A和B即可。伪代码:
A.sort();
B.sort();
List<int> result = ...;
for (int i = 0, j = 0; i < A.length && j < B.length; i++) {
while (A[i] > B[j] && j < B.length) {
j++;
}
if (j < B.length && A[i] == B[j]) {
add A[i] to result;
j++;
}
}
https://www.cnblogs.com/wdw31...
PS:踩人需谨慎,别把自己弄成个笑话。
补充内容: