当前位置:   article > 正文

LeetCode 2007. 从双倍数组中还原原数组

LeetCode 2007. 从双倍数组中还原原数组

题目链接

https://leetcode.cn/problems/find-original-array-from-doubled-array/description/?envType=daily-question&envId=2024-04-18

先给数组排序,然后使用hashmap来标记元素是双倍之前还是之后的

  1. class Solution {
  2. public int[] findOriginalArray(int[] changed) {
  3. Arrays.sort(changed);
  4. int[] ans = new int[changed.length / 2];
  5. int j = 0;
  6. Map<Integer, Integer> map = new HashMap<>();
  7. for (int i=0;i<changed.length;i++) {
  8. int x = changed[i];
  9. if (!map.containsKey(x)) { //当前元素x不是双倍后的
  10. if (j == ans.length) {
  11. return new int[0];
  12. }
  13. ans[j] = x;
  14. j++;
  15. map.merge(x * 2, 1, Integer::sum); //标记
  16. } else { //当前元素x是双倍后的
  17. int c = map.merge(x, -1, Integer::sum); //清除标记
  18. if (c == 0) {
  19. map.remove(x);
  20. }
  21. }
  22. }
  23. return ans;
  24. }
  25. }

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

闽ICP备14008679号