注冊 | 登錄讀書好,好讀書,讀好書!
讀書網(wǎng)-DuShu.com
當(dāng)前位置: 首頁出版圖書教育/教材/教輔教材高職高專教材程序設(shè)計(jì)基礎(chǔ):雙語版權(quán)

程序設(shè)計(jì)基礎(chǔ):雙語版權(quán)

程序設(shè)計(jì)基礎(chǔ):雙語版權(quán)

定 價(jià):¥30.70

作 者: (澳)Lesley Anne Robertson著;羅學(xué)科等編譯
出版社: 高等教育出版社
叢編項(xiàng):
標(biāo) 簽: 程序設(shè)計(jì)

ISBN: 9787040127430 出版時(shí)間: 2003-09-01 包裝: 簡裝本
開本: 26cm 頁數(shù): 476 字?jǐn)?shù):  

內(nèi)容簡介

  目前市場上有關(guān)程序設(shè)計(jì)的教材大多是針對(duì)具體的程序設(shè)計(jì)語言,例如PASCAL,BASIC,COBOL和C語言等來編寫的,但是這類教材都掩蓋了開發(fā)具體程序設(shè)計(jì)算法的基本步驟,而將主要內(nèi)容集中在具體的高級(jí)語言語法結(jié)構(gòu)上,不能教給學(xué)生程序設(shè)計(jì)的基本方法和思想。本書采用結(jié)構(gòu)程序設(shè)計(jì)技術(shù)及偽代碼方式來開發(fā)具體的算法,更集中考慮所設(shè)計(jì)的程序設(shè)計(jì)問題本身。本書推薦采用偽代碼形式,主要是由于偽代碼更接近實(shí)際的程序代碼,書寫格式更靈活多樣,并且在語法上和大多數(shù)結(jié)構(gòu)程序設(shè)計(jì)語言更相似。本書通俗易懂,實(shí)例豐富,用讀者容易理解的體系和敘述方法,深入淺出、循序漸進(jìn)地幫助讀者更好地掌握相關(guān)的基本內(nèi)容。本書適用廣大計(jì)算機(jī)專業(yè)和非計(jì)算機(jī)專業(yè)的大中院校學(xué)生學(xué)習(xí),也為有志于學(xué)習(xí)計(jì)算機(jī)程序設(shè)計(jì)或進(jìn)一步提高編程技巧的工程技術(shù)人員提高了很大方便。為了方便教學(xué)和學(xué)生學(xué)習(xí)英語知識(shí),在引進(jìn)該教材時(shí)采用了非常靈活的方式,既保留了原版教材的全部內(nèi)容,又對(duì)重點(diǎn)內(nèi)容進(jìn)行了翻譯,對(duì)重點(diǎn)句子和難理解的句子進(jìn)行了單獨(dú)注釋,有利于學(xué)生在學(xué)習(xí)計(jì)算機(jī)知識(shí)的同時(shí)學(xué)習(xí)外語,適應(yīng)就業(yè)市場的需要。本書的譯者是高等院校中有較豐富教學(xué)經(jīng)驗(yàn)的教師。但是,由于計(jì)算機(jī)科學(xué)技術(shù)的飛速發(fā)展以及我們水平的有限,本書肯定會(huì)存在很多不足,熱情希望得到社會(huì)各界和廣大讀者的批評(píng)指正。

作者簡介

暫缺《程序設(shè)計(jì)基礎(chǔ):雙語版權(quán)》作者簡介

圖書目錄

Preface
1 Program Design
1.1 Steps in program development
1.2 Structured programming
1.3 An introduction to algorithms and pseudocode
1.4 Program data
1.5 Chapter summary
2 Pseudocode
2.1 How to write pseudocode
2.2 The Structure Theorem
2.3 Chapter summary
3 Developing an algorithm
3.1 Defining the problem
3.2 Designing a solution algorithm
3.3 Checking the solution algorithm
3.4 Chapter summary
3.5 Programming problems
4 Selection control structures
4.1 The selection control structure
4.2 Algorithms using selection
4.3 The case structure
4.4 Chapter summary
4.5 Programming problems
5 Repetition control structure
5.1 Repetition using DOWHILE structure
5.2 Repetition using the REPEAT…UNTIL structure
5.3 Counted summary
5.4 Chapter summary
5.5 Programming problems
6 Pseudocode algorithms using sequence, selection and repetition
6.1 Eight solution algorithms
6.2 Chapter summary
6.3 Programming problems
7 Array processing
7.1 Array processing
7.2 Initializing the elements of an array
7.3 searching an array
7.4 Writing out the contents of an array
7.5 Programming examples using arrays
7.6 Two-dimension array
7.7 Chapter summary
7.8 Programming problems
8 First steps in modularization
8.1 Modularization
8.2 Hierarchy charts or structure charts
8.3 Communication between modules
8.4 Using parameters in program design
8.5 Steps in modularization
8.6 Programming examples using modules
8.7 Chapter summary
8.8 Programming problems
9 Further modularization, cohesion and coupling
9.1 Steps in modularization
9.2 Module cohesion
9.3 Module coupling
9.4 Chapter summary
9.5 Programming problems
10 General algorithms for common business problems
10.1 Program structure
10.2 Report generation with page break
10.3 Single-level control break
10.4 Multiple-level control break
10.5 Sequential file update
10.6 Chapter summary
10.7 Programming problems
11 Object-oriented design
11.1 Introduction to object-oriented design
11.2 Steps in creating an object-oriented solution
11.3 Programming example using object-oriented design
11.4 Interface and GUI objects
11.5 Chapter summary
12 More object-oriented design
12.1 Object-oriented design with multiple classes
12.2 Programming example with multiple classed
12.3 Chapter summary
12.4 Programming problems
13 Conclusion
13.1 Simple program design
13.2 Chapter summary
Appendix 1 Flowcharts
The three basic control structures
Simple algorithms that use the sequence control structure
Flowcharts and the selection control structure
Simple algorithms which use the selection control structure
The case structure expressed as a flowchart
Flowcharts and the repetition control structure
Simple algorithms which use the repetition control structure
Flowcharts and modules
Appendix 2 Nassi–Schneiderman diagrams
The three basic control structures
Simple algorithms that use the sequence control structure
N-S diagrams and the selection control structure
Simple algorithms which use the selection control structure
The case structure , expressed as a N-S diagram
N-S diagrams and the repetition control structure
Simple algorithms which use the repetition control structure
Appendix 3 Special algorithms
Sorting algorithms
Dynamic data structure
Glossary
Index

本目錄推薦

掃描二維碼
Copyright ? 讀書網(wǎng) ranfinancial.com 2005-2020, All Rights Reserved.
鄂ICP備15019699號(hào) 鄂公網(wǎng)安備 42010302001612號(hào)