論文格式
      電氣工程 會計論文 金融論文 國際貿易 財務管理 人力資源 輕化工程 德語論文 工程管理 文化產業管理 信息計算科學 電氣自動化 歷史論文
      機械設計 電子通信 英語論文 物流論文 電子商務 法律論文 工商管理 旅游管理 市場營銷 電視制片管理 材料科學工程 漢語言文學 免費獲取
      制藥工程 生物工程 包裝工程 模具設計 測控專業 工業工程 教育管理 行政管理 應用物理 電子信息工程 服裝設計工程 教育技術學 論文降重
      通信工程 電子機電 印刷工程 土木工程 交通工程 食品科學 藝術設計 新聞專業 信息管理 給水排水工程 化學工程工藝 推廣賺積分 付款方式
      • 首頁 |
      • 畢業論文 |
      • 論文格式 |
      • 個人簡歷 |
      • 工作總結 |
      • 入黨申請書 |
      • 求職信 |
      • 入團申請書 |
      • 工作計劃 |
      • 免費論文 |
      • 合作期刊 |
      • 論文同學網 |
      搜索 高級搜索

      當前位置:論文格式網 -> 畢業論文 -> 計算機論文
      畢業論文標題:

      基于Centrality的Cluster發現算法設計與實現

       本文ID:LWGSW13598 價格:收費積分/100
      掃一掃 掃一掃
      本站會員可自行下載:下載地址 基于Centrality的Cluster發現算法設計與實現 (收費:1000 積分)  

      論文字數:20022,頁數:46 有開題報告,任務書

      摘   要
       現實世界中的許多復雜系統都可以使用網絡模型進行描述。復雜網絡的結構和性質研究已經成為引人注目的領域。對復雜網絡進行中心化,發現復雜網絡中的重要節點,具有重要的應用價值。
       軟件系統其實也是一類非常重要的復雜網絡,不過目前為止對這方面的研究非常少見。軟件一般由許多相互關聯的單元和子系統(如子程序,類,源程序文件,庫文件等)以及這些組成元素間的交互和協作關系組成。軟件的組成元素可以看成復雜網絡中的節點,而他們之間的相互調用或是消息通信關系可以看成復雜網絡中的邊。目前,軟件系統規模日趨龐大,系統間的協作日趨緊密,特別是開源軟件的發展更促進這一趨勢。將復雜的大型軟件系統分解成相對獨立的軟件集群,具有重要的研究意義。
       本課題運用復雜網絡中心化(Centrality)思想和集群(Cluster)分析思想,針對軟件系統這類復雜網絡,設計并實現了一種通過計算各邊的介數指標值找到核心節點,然后移除指標值大的節點邊從而發現軟件系統代碼集群的算法,達到分解大型軟件系統的目的,將復雜問題簡單化。
       本論文詳細闡述了算法的設計與實現過程,簡述了設計本算法所依賴的理論基礎,包括復雜網絡、復雜網絡中心化、集群分析、軟件系統等;著重介紹了在實現過程中,計算最短路徑使用的弗洛伊德算法,判斷回路的深度優先遍歷算法,C#圖形編程等。

      關鍵詞:復雜網絡,中心化,軟件系統,集群分析
      The Design and Realization of Cluster Detection Algorithm
      Based On Centrality
      Abstract                                                

       Most complex systems in nature can be described by models of networks, exploring the structure and property of complex networks has become one of hot topics in science. Centralization of complex networks, which can help us find important nodes in complex networks, is of great practical value in many applications.
       Software systems represent another important class of complex networks, which to date have received relatively little attention in this field. Software is built up out of many interacting units and subsystems at many levels of granularity (subroutines, classes, source files, libraries, etc.), and the interactions and collaborations of those pieces can be used to define networks or graphs that form a skeletal description of a system. Nowadays, the scale of software systems and the collaboration among software systems tend to be more huge and closer. What’s more, the development of open source software makes this trend badly. Then it is significantly useful to decompose the software system into smaller independent software clusters.
       Aimed at the software systems, according to the centralization of complex networks and cluster analysis principles,this research have been able to design and implement an algorithm that through finding and removing the key edges whose centrality value are the maximal to detecting the software clusters, which simplify the complex software networks.
       This paper detailedly discusses the design and development progress of this algorithm; simply talks about the theory the algorithm based on, including complex networks, centralization, cluster analysis, software systems, etc; mainly introduces the Floyd algorithm counting all the shortest path of all the nodes, the DFS algorithm judging the connectivity of graphic and the C# graphic programming, etc.
      Key Words:Complex networks, Centralization, Software systems, Cluster analysis.
      目   錄
      1. 緒論 1
      1.1 課題背景及來源 1
      1.2 課題研究的意義 1
      1.3 論文組織結構 2
      2. 基本理論知識及其應用 3
      2.1 復雜網絡 3
      2.1.1 概念 3
      2.1.2 度量參數 6
      2.1.3 研究意義 7
      2.2 復雜網絡中心化 10
      2.2.1 度指標 11
      2.2.2 緊密度指標 12
      2.2.3 特征向量指標 13
      2.2.4 介數指標 14
      2.2.5 流介數指標 15
      2.3 軟件系統網絡化特征 16
      2.4 集群分析 18
      3. 算法設計 20
      3.1 算法設計分析 20
      3.1.1 軟件系統拓撲圖 20
      3.1.2 交通網絡的中心化 21
      3.2 算法思想 22
      4. 算法實現 24
      4.1 開發環境及工具 24
      4.2 算法實現 24
      4.2.1 用戶輸入界面實現 24
      4.2.2 節點圖形表示 25
      4.2.3 計算最短路徑 26
      4.2.4 計算Centrality值 27
      4.2.5 發現Cluster 28
      4.3 結果分析 28
      4.3.1 開發難點及相關策略 28
      4.3.2 工作展望及見解 29
      4.3.3 創新思想 29
      5. 總結 31
      致謝 32
      參考文獻 33
      附錄 35


      相關論文
      本論文在計算機論文欄目,由論文格式網整理,轉載請注明來源www.donglienglish.cn,更多論文,請點論文格式范文查看
      上一篇:基于RMI的考勤信息管理系統的設計.. 下一篇:基于XML技術的綜合娛樂系統數據同..
      Tags:基于 Centrality Cluster 發現 算法 設計 實現 【收藏】 【返回頂部】
      最新文章
      熱門文章
      計算機論文
      推薦文章

      本站部分文章來自網絡,如發現侵犯了您的權益,請聯系指出,本站及時確認刪除 E-mail:349991040@qq.com

      論文格式網(www.donglienglish.cn--論文格式網拼音首字母組合)提供計算機論文畢業論文格式,論文格式范文,畢業論文范文

      Copyright@ 2010-2018 LWGSW.com 論文格式網 版權所有 蜀ICP備09018832號

      感谢您访问我们的网站,您可能还对以下资源感兴趣:

      论文格式网:毕业论文格式范文