zoukankan      html  css  js  c++  java
  • LeetCode 677. Map Sum Pairs

    原题链接在这里:https://leetcode.com/problems/map-sum-pairs/

    题目:

    Implement a MapSum class with insert, and sum methods.

    For the method insert, you'll be given a pair of (string, integer). The string represents the key and the integer represents the value. If the key already existed, then the original key-value pair will be overridden to the new one.

    For the method sum, you'll be given a string representing the prefix, and you need to return the sum of all the pairs' value whose key starts with the prefix.

    Example 1:

    Input: insert("apple", 3), Output: Null
    Input: sum("ap"), Output: 3
    Input: insert("app", 2), Output: Null
    Input: sum("ap"), Output: 5

    题解:

    When inserting the key, construct Trie. TrieNode has int value. 

    Everytime when iterating this node again with new word, add new value to this node value.

    If the word is already inserted before, then add the delta to node value.

    When getting sum, iterate prefix's each char to the TrieNode and return that node's value.

    Time Complexity: insert, O(key.length()). sum, O(prefix.length()).

    Space: O(nm). n is count of key. m is average length of key.

    AC Java: 

     1 class MapSum {
     2     TrieNode root;
     3     HashMap<String, Integer> hm;
     4     
     5     /** Initialize your data structure here. */
     6     public MapSum() {
     7         root = new TrieNode(0); 
     8         hm = new HashMap<>();
     9     }
    10     
    11     public void insert(String key, int val) {
    12         int temp = val;
    13         if(hm.containsKey(key)){
    14             val = val - hm.get(key);
    15         }
    16         
    17         hm.put(key, temp);
    18         
    19         TrieNode p = root;
    20         for(char c : key.toCharArray()){
    21             if(p.nexts[c-'a'] == null){
    22                 p.nexts[c-'a'] = new TrieNode(val);
    23             }else{
    24                 p.nexts[c-'a'].val += val;
    25             }
    26             
    27             p = p.nexts[c-'a'];
    28         }
    29     }
    30     
    31     public int sum(String prefix) {
    32         TrieNode p = root;
    33         for(char c : prefix.toCharArray()){
    34             if(p.nexts[c-'a'] == null){
    35                 return 0;
    36             }
    37             
    38             p = p.nexts[c-'a'];
    39         }
    40         
    41         return p.val;
    42     }
    43 }
    44 
    45 class TrieNode{
    46     int val;
    47     TrieNode [] nexts;
    48     
    49     public TrieNode(int val){
    50         this.val = val;
    51         nexts = new TrieNode[26];
    52     }
    53 }
    54 
    55 /**
    56  * Your MapSum object will be instantiated and called as such:
    57  * MapSum obj = new MapSum();
    58  * obj.insert(key,val);
    59  * int param_2 = obj.sum(prefix);
    60  */
  • 相关阅读:
    SQL LOADER使用
    固定资产新增接口
    固定资产的调整分配接口
    固定资产的完全报废接口
    固定资产更新接口
    详解EBS接口开发之库存事务处理采购接收和退货
    物料分类新增&更新
    物料REVISION控制
    供应商导入的API补充(详解EBS接口开发之供应商导入)
    PostgreSQL经常使用函数
  • 原文地址:https://www.cnblogs.com/Dylan-Java-NYC/p/11848195.html
Copyright © 2011-2022 走看看