轉:去掉重複的字串組合

來源:互聯網
上載者:User

標籤:http   ar   for   資料   sp   on   代碼   ad   ef   

轉自:http://bbs.csdn.net/topics/310249367

超級大笨狼

題目:有一個字串數組 List<string>="abc","bac","acb".....10萬個元素,每個長度在3到16個字元。
只保留其中一個組合,也就是說對於字串內容相同,只是字元組合順序不同的字串進行刪除。
要求結果在一秒內算出。

 

下面是輸入的資料:

        static void Main(string[] args) 
        {              
            //10萬個字串。 
            int totalStr = 10*10000; 
            List <string> myArr = new List <string>(); 
            int totalLength = 0; 
            char[] input = "白日依山盡黃河入海流欲窮千裡目更上一層樓危樓高百尺可以摘星辰不感高聲語恐驚天上人".ToCharArray(); 
            Random rand = new Random(); 
            for (int i = 0; i < totalStr; i++)//10萬個資料 
            { 
                string tempStr = ""; 
                int tempLength = rand.Next(3, 16); //3到16個字元                
                for (int j = 0; j < tempLength; j++) 
                { 
                    tempStr += input[rand.Next(0, input.Length)];//用a-z英文測試 
                } 
                totalLength += tempLength; 
                myArr.Add(tempStr); 
            } 

            //測試開始 
            long begin = System.DateTime.Now.Ticks;          
            //這裡寫程式碼,可以寫函數或類什麼的在此調用。
   。。。。。。。。
            long end = System.DateTime.Now.Ticks; 
            Console.WriteLine("總共" + totalStr/10000 + "萬個資料,總長度" + totalLength + ",做完需要" + System.TimeSpan.FromTicks(end - begin).Milliseconds + "毫秒"); 
            Console.ReadLine(); 
}

 

轉:去掉重複的字串組合

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.