当前位置:   article > 正文

算法day27

算法day27

第一题

515. 在每个树行中找最大值

        首先是遍历每层的节点,将每一层最大值的节点的值保留下来,最后将所有层的最大值的表返回;具体的遍历每层节点的过程如上一篇故事;

综上所述,代码如下:

  1. /**
  2. * Definition for a binary tree node.
  3. * public class TreeNode {
  4. * int val;
  5. * TreeNode left;
  6. * TreeNode right;
  7. * TreeNode() {}
  8. * TreeNode(int val) { this.val = val; }
  9. * TreeNode(int val, TreeNode left, TreeNode right) {
  10. * this.val = val;
  11. * this.left = left;
  12. * this.right = right;
  13. * }
  14. * }
  15. */
  16. class Solution {
  17. public List<Integer> largestValues(TreeNode root) {
  18. List<Integer> ret = new ArrayList<>();
  19. if(root== null) return ret;
  20. Queue<TreeNode> q = new LinkedList<>();
  21. q.add(root);
  22. while(!q.isEmpty()){
  23. int size = q.size();
  24. int tmp = Integer.MIN_VALUE;
  25. for(int i = 0;i<size;i++){
  26. TreeNode t = q.poll();
  27. tmp = Math.max(tmp,t.val);
  28. if(t.left != null)q.add(t.left);
  29. if(t.right != null) q.add(t.right);
  30. }
  31. ret.add(tmp);
  32. }
  33. return ret;
  34. }
  35. }

第二题

1046. 最后一块石头的重量

实例分析:

        我们采用堆的解题方法;

        创建一个大根堆,把所有的元素放入到大根堆里面;

        每次返回堆顶的两个元素,得到两个数的差值在进入到大根堆里面;

        最后只要大根堆的里面有元素就一直重复出堆相减的操作;

        返回最后的数值即可;

综上所述,代码如下:

  1. class Solution {
  2. public int lastStoneWeight(int[] stones) {
  3. //1、创建一个大根堆
  4. PriorityQueue<Integer> heap = new PriorityQueue<>((a,b) -> b-a);
  5. //2、把所有的石头放进堆里里面
  6. for(int x :stones){
  7. heap.offer(x);
  8. }
  9. //3、模拟
  10. while(heap.size()>1){
  11. int a = heap.poll();
  12. int b = heap.poll();
  13. if(a > b ){
  14. heap.offer(a-b);
  15. }
  16. }
  17. return heap.isEmpty()?0:heap.peek();
  18. }
  19. }

第三题

703. 数据流中的第 K 大元素

本题是top-k模型,解题思路如下所示:

        创建一个长度为k的小根堆,然后开始往里面加入元素,一直等加入元素后小根堆的长度大于k值时,我们进行出堆操作,即将小根堆顶部的元素退出去,在进行入堆操作,就这样一直重复操作,直到所有的元素都进行过入堆操作,这时候返回的堆顶的元素即是我们所求;

        综上所述,代码如下:

  1. class KthLargest {
  2. PriorityQueue<Integer> heap;
  3. int k1;
  4. public KthLargest(int k, int[] nums) {
  5. k1 = k;
  6. heap = new PriorityQueue<>();
  7. for(int x : nums){
  8. heap.offer(x);
  9. if(heap.size() > k1){
  10. heap.poll();
  11. }
  12. }
  13. }
  14. public int add(int val) {
  15. heap.offer(val);
  16. if(heap.size() > k1){
  17. heap.poll();
  18. }
  19. return heap.peek();
  20. }
  21. }
  22. /**
  23. * Your KthLargest object will be instantiated and called as such:
  24. * KthLargest obj = new KthLargest(k, nums);
  25. * int param_1 = obj.add(val);
  26. */

第四题

692. 前K个高频单词

解法:本题利用堆来解决top-k问题;

步骤:

步骤一:

        预处理一下原始的字符串数组,即用一个hash表统计一下每一个单词出现的频次;

步骤二:

        创建一个大小为k的堆:

        频次不同:小根堆

        频次相同时创建大根堆(字典序)

步骤三:

        开始循环操作:

        让元素依次进堆,判断条件,如果不满足条件的话就进行堆顶的元素出堆操作

步骤四:

        根据实际情况对元素进行逆序操作

        综上所述,代码如下:

  1. class Solution {
  2. public List<String> topKFrequent(String[] words, int k) {
  3. //1、统计一下每一个单词出现的次数
  4. Map<String,Integer> hash = new HashMap<>();
  5. for(String s: words){
  6. hash.put(s,hash.getOrDefault(s,0)+1);
  7. }
  8. //2、创建一个大小为k的堆
  9. PriorityQueue<Pair<String,Integer>> heap = new PriorityQueue<>
  10. (
  11. (a,b) -> {
  12. if(a.getValue().equals(b.getValue()))//出现频次相同的时候,字典按照大根堆的顺序排列
  13. {
  14. return b.getKey().compareTo(a.getKey());
  15. }
  16. return a.getValue() - b.getValue();
  17. }
  18. );
  19. //3、top-k的主逻辑
  20. for(Map.Entry<String,Integer> e : hash.entrySet()){
  21. heap.offer(new Pair<>(e.getKey(),e.getValue()));
  22. if(heap.size() > k){
  23. heap.poll();
  24. }
  25. }
  26. //4、提取结果
  27. List<String> ret = new ArrayList<>();
  28. while(!heap.isEmpty()){
  29. ret.add(heap.poll().getKey());
  30. }
  31. //逆序数组
  32. Collections.reverse(ret);
  33. return ret;
  34. }
  35. }

ps:本次的内容就到这里了,如果对你有所帮助的话就请一键三连哦!!! 

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

闽ICP备14008679号