計算機畢業(yè)論文_程序在線評測系統(tǒng).doc
約16頁DOC格式手機打開展開
計算機畢業(yè)論文_程序在線評測系統(tǒng),程序在線評測系統(tǒng)——后臺評測模塊摘 要:acm國際大學生程序設計競賽,是一項旨在展示大學生創(chuàng)新能力、團隊精神和在壓力下編寫程序、分析和解決問題能力的年度競賽。經(jīng)過近30多年的發(fā)展,acm國際大學生程序設計競賽已經(jīng)發(fā)展成為最具影響力的大學生計算機競賽。隨著其發(fā)展,各高校也越來越重視這項競賽,廣東外語外貿(mào)大學的程序在線評測...


內(nèi)容介紹
此文檔由會員 wumeil 發(fā)布
程序在線評測系統(tǒng)
——后臺評測模塊
摘 要:ACM國際大學生程序設計競賽,是一項旨在展示大學生創(chuàng)新能力、團隊精神和在壓力下編寫程序、分析和解決問題能力的年度競賽。經(jīng)過近30多年的發(fā)展,ACM國際大學生程序設計競賽已經(jīng)發(fā)展成為最具影響力的大學生計算機競賽。隨著其發(fā)展,各高校也越來越重視這項競賽,廣東外語外貿(mào)大學的程序在線評測系統(tǒng)也應運而生。在這個平臺中,用戶只需要提交他們的代碼,系統(tǒng)就可以自動地為其程序做出相應的評測,并且返回相應的評測結果。通過這個平臺,用戶不但可以鞏固學科知識,也可以大大提高代碼的實踐能力。
后臺評測模塊主要負責對用戶提交的源程序進行編譯,運行,得到是評測結果再反饋給用戶。
關鍵詞:在線評測,程序設計,ACM
Online Judge System
——Background Judge Module
Cheng Jin Yu School of Informatics
Abstract: ACM international collegiate programming contest, is an annual competition that aims at showing their abilitities of innovation, teamwork, programming under pressure, analysing and solving problems. Through more than 30 years’ development, it has become the most influential computing contest for college students and been taken more seriously by many higher eduction universities and colleges, so there comes the Guangdong University of Foreign Studies Online Judge. System which can provide great convenience for programming lovers and students. Users only need to submit their code, then the system can automatically make the appropriate eva luation of its procedures, and returns the corresponding eva luation results. Wiht this platform, users can not only consolidate the academic knowledge, but also can greatly improve the ability of pratical programming.
Background judge module is mainly responsible for a user to submit the source code to compile, run, and return the judge result to the user.
Key words: Online judge, Programming, ACM
目 錄
摘 要 I
Abstract II
第一章 緒論 1
1.1 課題的背景、研究意義 1
1.2 軟件開發(fā)環(huán)境描述 1
1.3 軟件運行環(huán)境描述 2
第二章 系統(tǒng)總體設計 3
2.1 模塊介紹 3
2.2 項目分工 6
2.3 數(shù)據(jù)流圖 6
2.4 數(shù)據(jù)庫設計 8
第三章 GOJ內(nèi)核設計 13
3.1 定義 13
3.2 性能要求 14
3.3 判題流程 14
3.4 接口設計 15
第四章 內(nèi)核數(shù)據(jù)結構設計 19
4.1 邏輯結構設計 19
4.3 出錯信息 20
4.4 補救措施 20
第五章 內(nèi)核實現(xiàn)難點 21
5.1 JNI本地調(diào)用 21
5.2 內(nèi)存測量 23
5.3 進程數(shù)控制 29
5.4 連接到其他Online Judge System 30
第六章 結語 36
參考文獻 37
致 謝 38
——后臺評測模塊
摘 要:ACM國際大學生程序設計競賽,是一項旨在展示大學生創(chuàng)新能力、團隊精神和在壓力下編寫程序、分析和解決問題能力的年度競賽。經(jīng)過近30多年的發(fā)展,ACM國際大學生程序設計競賽已經(jīng)發(fā)展成為最具影響力的大學生計算機競賽。隨著其發(fā)展,各高校也越來越重視這項競賽,廣東外語外貿(mào)大學的程序在線評測系統(tǒng)也應運而生。在這個平臺中,用戶只需要提交他們的代碼,系統(tǒng)就可以自動地為其程序做出相應的評測,并且返回相應的評測結果。通過這個平臺,用戶不但可以鞏固學科知識,也可以大大提高代碼的實踐能力。
后臺評測模塊主要負責對用戶提交的源程序進行編譯,運行,得到是評測結果再反饋給用戶。
關鍵詞:在線評測,程序設計,ACM
Online Judge System
——Background Judge Module
Cheng Jin Yu School of Informatics
Abstract: ACM international collegiate programming contest, is an annual competition that aims at showing their abilitities of innovation, teamwork, programming under pressure, analysing and solving problems. Through more than 30 years’ development, it has become the most influential computing contest for college students and been taken more seriously by many higher eduction universities and colleges, so there comes the Guangdong University of Foreign Studies Online Judge. System which can provide great convenience for programming lovers and students. Users only need to submit their code, then the system can automatically make the appropriate eva luation of its procedures, and returns the corresponding eva luation results. Wiht this platform, users can not only consolidate the academic knowledge, but also can greatly improve the ability of pratical programming.
Background judge module is mainly responsible for a user to submit the source code to compile, run, and return the judge result to the user.
Key words: Online judge, Programming, ACM
目 錄
摘 要 I
Abstract II
第一章 緒論 1
1.1 課題的背景、研究意義 1
1.2 軟件開發(fā)環(huán)境描述 1
1.3 軟件運行環(huán)境描述 2
第二章 系統(tǒng)總體設計 3
2.1 模塊介紹 3
2.2 項目分工 6
2.3 數(shù)據(jù)流圖 6
2.4 數(shù)據(jù)庫設計 8
第三章 GOJ內(nèi)核設計 13
3.1 定義 13
3.2 性能要求 14
3.3 判題流程 14
3.4 接口設計 15
第四章 內(nèi)核數(shù)據(jù)結構設計 19
4.1 邏輯結構設計 19
4.3 出錯信息 20
4.4 補救措施 20
第五章 內(nèi)核實現(xiàn)難點 21
5.1 JNI本地調(diào)用 21
5.2 內(nèi)存測量 23
5.3 進程數(shù)控制 29
5.4 連接到其他Online Judge System 30
第六章 結語 36
參考文獻 37
致 謝 38