注冊 | 登錄讀書好,好讀書,讀好書!
讀書網-DuShu.com
當前位置: 首頁出版圖書經濟管理管理人力資源管理績效管理

績效管理

績效管理

定 價:¥59.00

作 者: 張新民,吳革譯;劉偉華譯
出版社: 中信出版社
叢編項: ACCA財務管理證書 模塊A
標 簽: 評估

ISBN: 9787800733819 出版時間: 2002-09-01 包裝: 平裝
開本: 26cm 頁數: 359 字數:  

內容簡介

  ACCA:國際領先的專業(yè)會計師組織一百多年來,英國特許公認會計師公會(TheAssociationofCharteredCertifiedAccountants,簡稱ACCA)在全世界范圍內備受尊崇。無論您的背景如何。ACCA都能通過使您受益終生的課程滿足您個性化的需求和目標。ACCA成立于1904年,是目前世界上最負盛名的專業(yè)會計師團體之一,也是國際上海外學員最多、學員規(guī)模發(fā)展最快的專業(yè)會計師組織。目前在160個國家和地區(qū)擁有近30萬會員和學員,設有200多個考點,具有真正的國際性。ACCA以高質量的課程設計,高標準的培訓要求和高水平的考試安排,贏得聯合國和大量國際組織的高度評價,更為眾多的跨國公司和專業(yè)機構所推崇。ACCA以其獨到的全球觀念引領會計培訓之新潮,率先全面推出以國際會計準則和國際審計準則為基礎的教材和考試,以適應世界經濟一體化的大趨勢。ACCA與我國合作培養(yǎng)的人才,大部分在政府機構、三資企業(yè)、著名會計師事務所和大型企業(yè)中擔任重要職務。

作者簡介

  張新民,對外經濟貿易大學國際工商管理學院院長、會計學教授。1962年12月生,管理學博士、企業(yè)財務狀況質量分析理論的創(chuàng)立者,中國會計學會理事、中國對外經濟貿易會計學會常務理事。中國對外經濟貿易會計學會常務理事。中國大陸高等院校中惟一一位擁有英國特許公認會計師(ACCA)資格的現職會計學教授。 在《會計研究》、《財務與會計》等專業(yè)刊物發(fā)表論文30余篇;出版專著《企業(yè)財務狀況質量分析理論研究》(2001年12月),《企業(yè)財務報表分析》(2001年2月),《企業(yè)財務分析》(2000年10月),《看報表、選股票》(2001年5月)、《中國會計熱點問題》(1996年5月);主編《會計學原理》(1999年2月)、《稅務會計》(1997年9月)、《中級會計英語》(1995年9月)等多部專業(yè)書籍;主譯英國特許公認會計師協(xié)會著作《高級會計實務》(1996年5月)。等等 吳革,對外經貿大學工商管理學院會計學副教授。1999-2000年曾在香港何鐵文會計公司工作一年,在國內先后出版7本專著,并發(fā)表編譯論文70余篇。

圖書目錄

l INTRODUCTION                  
 l.1 Why Compilers? A Brief History                   
 1.2 Programs Related to Compilers 4                  
 l.3 The Translation Process 7                  
 l.4 Major Data Structures in a Compiler l3                  
 1.5 Other Issues in Compiler Structure 14                  
 l.6 Bootstrapping and Porting 18                  
 l.7 The TINY Sample Language and Compiler 22                  
 1.8 C-Minus: A Language for a Compiler Project 26                  
 Exercises 27 Notes and References 29                  
                   
 2 SCANNING 31                  
 2.1 The Scanning Process 32                  
 2.2 Regular Expressions 34                  
 2.3 Finite Automata 47                  
 2.4 From Regular Expressions to DFAs 64                  
 2.5 Implementation of a TINY Scanner 75                  
 2.6 Use of  Lex to Generate a Scanner Automatically 81                  
 Exercises 89                  
 Programming Exercises 93                  
 Notes and References 94                  
                   
 3 CONTEXT-FREE GRAMMARS AND PARSING 95                  
 3.l The Parsing Process 96                  
 3.2 Context-Free Grammars 97                  
 3.3 Parse Trees and Abstract Syntax Trees 106                  
 3.4 Ambiguity 114                  
 3.5 Extended Notations: EBNF and Syntax Diagrams 123                  
 3.6 Formal Properties of Context-Free Languages 128                  
 3.7 Syntax of the TINY Language 133                  
 Exercises 138 Notes and References 142                  
                   
 4 T0P-D0WN PARSING l43                  
 4.1 Top-Down Parsing by Recursive-Descent l44                  
 4.2 LL(1) Parsing 152                  
 4.3 First and Follow Sets 168                  
 4.4 A Recursive-Descent Parser for the TINY Language l80                  
 4.5 Error Recovery in Top-Down Parsers l83                  
 Exercises l89 Programming Exercises l93                  
 Notes and References 196                  
                   
 5 BOTTOM-UP PARSING 197                  
 5.1 Overview of Bottom-Up Parsing 198                  
 5.2 Finite Automata of LR(0) Items and LR(0) Parsing 20l                  
 5.3 SLR(1) Parsing 2l0                  
 5.4 General LR(l) and LALR(l) Parsing 217                  
 5.5 Yacc: An LALR(l) Parser Generator 226                  
 5.6 Generation of a TINY Parser Using Yacc 243                  
 5.7 Error Recovery in Bottom-Up Parsers 245                  
 Exercises 250 Programming Exercises 254                  
 Notes and References 256                  
                   
 6  SEMANTIC ANALYSIS 257                  
 6.1 Attributes and Attribute Grammars 259                  
 6.2 Algorithms for Attribute Computation 270                  
 6.3 The Symbol Table 295                  
 6.4 Data Types and Type Checking 313                  
 6.5 A Semantic Analyzer for the TINY Language 334                  
 Exercises 339 Programming Exercises 342                  
 Notes and References 343                  
                   
 7  RUNTIME ENVIRONMENTS 345                  
 7.l Memory Organization During Program Execution 346                  
 7.2 Fully Static Runtime Environments 349                  
 7.3 Stack-Based Runtime Environments 352                  
 7.4 Dynamic Memory 373                  
 7.5 Parameter Passing Mechanisms 381                  
 7.6 A Runtime Environment for the TINY Language 386                  
 Exercises 388 Programming Exercises 395                  
 Notes and References 396                  
                   
 8 CODE GENERATION 397                  
 8.1 Intermediate Code and Data Structures for Code Generation                  
 8.2 Basic Code Generation Techniques                  
 8.3 Code Generation of Data Structure References                  
 8.4 Code Generation of Control Statements and Logical Expressions                  
 8.5 Code Generation of Procedure and Function Calls                  
 8.6 Code Generation in Commercial Compilers: Two Case Studies                  
 8.7 TM: A Simple Target Machine                  
 8.8 A Code Generator for the TINY Language                  
 8.9 A Survey of Code Optimization Techniques                  
 8.l0 Simple Optimizations for the TINY Code Generator                  
 Exercises Programming Exercises                  
 Notes and References                  
                   
 Appendix A C0MPILER PROJECT                  
 A.l Lexical Conventions of C-                  
 A.2 Syntax and Semantics of C-                  
 A.3 Sample Programs in C-                  
 A.4 A TINY Machine Runtime Environment for the C-- Language                  
 A.5 Programming Projects Using C-- and TM                  
                   
 Appendix B: TINY COMPILER LISTING                  
                   
 Appendix C: TINY MACHINE SHMULATOR LISTING Bibliography 558                  
                   
 Index 562                  

本目錄推薦

掃描二維碼
Copyright ? 讀書網 www.talentonion.com 2005-2020, All Rights Reserved.
鄂ICP備15019699號 鄂公網安備 42010302001612號