首页 > 其他 > 详细

LeetCode:用HashMap解决问题

时间:2018-01-28 15:25:27      阅读:229      评论:0      收藏:0      [点我收藏+]

LeetCode:用HashMap解决问题

Find Anagram Mappings

 1 class Solution {
 2     public int[] anagramMappings(int[] A, int[] B) {
 3         Map<Integer, Integer> D = new HashMap();
 4         for (int i = 0; i < B.length; ++i)
 5             D.put(B[i], i);
 6 
 7         int[] ans = new int[A.length];
 8         int t = 0;
 9         for (int x: A)
10             ans[t++] = D.get(x);
11         return ans;
12     }
13 }

思考:用字典来解决问题,巧妙将数组编号转换为页码,然后快速查表

 

LeetCode:用HashMap解决问题

原文:https://www.cnblogs.com/MrSaver/p/8371180.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!