首页 > Web开发 > 详细

535. Encode and Decode TinyURL

时间:2018-05-30 00:05:05      阅读:159      评论:0      收藏:0      [点我收藏+]
class Solution {
public:
    long max_id = 0;
    unordered_map<long,string> id_long;
    
    // Encodes a URL to a shortened URL.
    string encode(string longUrl) {
        id_long[max_id++] = longUrl;
        return to_string(max_id - 1);
    }

    // Decodes a shortened URL to its original URL.
    string decode(string shortUrl) {
        long id = stol(shortUrl);
        return id_long[id];
    }
};

// Your Solution object will be instantiated and called as such:
// Solution solution;
// solution.decode(solution.encode(url));

 

535. Encode and Decode TinyURL

原文:https://www.cnblogs.com/JTechRoad/p/9108544.html

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