C#程式資料量太大導致棧溢出Stack Overflow by big data

來源:互聯網
上載者:User

在C#中有許多好用的泛型,但是在資料量很大的情況下(M)的情況下,很多時候會出現程式在小的測試資料運行正確,換成實際資料時,出現棧溢出,在不最佳化程式的情況下,如果得出實驗結果。

在C#中兩種方法可以解決這個問題,本次以在有向圖中尋找強連通分支為例。在計算強連通分支時,會使用深度優先搜尋策略。

DFS使用遞迴實現,是出現棧溢出的主要原因,使用單獨的線程來實現,因為在C#中可以自訂最大棧的大小;如:使用1024000000 使用索引實現DFS 第一種方法的實現如下:

var T = new Thread(delegate() { DFS_Loops(adj_list, rev_adj_list); }, 1073741824); T.Start();
對於線程的使用可以參考: 一個簡單的C#多線程間同步的例子
第二種方法的虛擬碼如下:
for all vertices start from n to 1 v = take first vertex   if v is explored then continue (go to for loop)  create new stack coll  push v into the stack coll  while (stackcol.count>0)     w = peek item from stack col (make sure don't pop here at this stage)     markExplore (w)     push only one unexplored adjacent node into the stack col     continue; (go to while loop)     if there is no adjacent node          pop  item from the stack coll (remember we just peek the item earlier, didn't pop it)


相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.