zoukankan      html  css  js  c++  java
  • leetcode535

    public class Codec
        {
            const string alphabet = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
    
            Dictionary<string, string> url2code = new Dictionary<string, string>();
            Dictionary<string, string> code2url = new Dictionary<string, string>();
    
            const string TINYURL = "http://tinyurl.com/";
    
            // Encodes a URL to a shortened URL
            public string encode(string longUrl)
            {
                while (!url2code.ContainsKey(longUrl))//原来没有这个url的short版本
                {
                    //需要生成一个新的
                    var random = new Random(DateTime.Now.Millisecond);
                    StringBuilder sb = new StringBuilder();
                    while (sb.Length < 6)
                    {
                        var index = random.Next(62);
                        sb.Append(alphabet[index]);
                    }
                    var code = TINYURL + sb.ToString();
                    if (!code2url.ContainsKey(code))//新生成的这个code,之前没用过
                    {
                        url2code.Add(longUrl, code);
                        code2url.Add(code, longUrl);
                    }
                }
                return url2code[longUrl];
            }
    
            // Decodes a shortened URL to its original URL.
            public string decode(string shortUrl)
            {
                if (code2url.ContainsKey(shortUrl))
                {
                    return code2url[shortUrl];
                }
                else
                {
                    return shortUrl;
                }
            }
        }
    
    // Your Codec object will be instantiated and called as such:
    // Codec codec = new Codec();
    // codec.decode(codec.encode(url));

    https://leetcode.com/problems/encode-and-decode-tinyurl/#/description

  • 相关阅读:
    H5图片上传、压缩
    数据库基本操作
    数组遍历
    CURL
    获取IP
    Memcached的实战笔记
    修bug总结 (基于java语言)
    java开发工作的总结
    多线程测试类
    可清除的单例对象获取类
  • 原文地址:https://www.cnblogs.com/asenyang/p/6781471.html
Copyright © 2011-2022 走看看