注册 | 登录读书好,好读书,读好书!
读书网-DuShu.com
当前位置: 首页出版图书经济管理管理人力资源管理绩效管理

绩效管理

绩效管理

定 价:¥59.00

作 者: 张新民,吴革译;刘伟华译
出版社: 中信出版社
丛编项: ACCA财务管理证书 模块A
标 签: 评估

ISBN: 9787800733819 出版时间: 2002-09-01 包装: 平装
开本: 26cm 页数: 359 字数:  

内容简介

  ACCA:国际领先的专业会计师组织一百多年来,英国特许公认会计师公会(TheAssociationofCharteredCertifiedAccountants,简称ACCA)在全世界范围内备受尊崇。无论您的背景如何。ACCA都能通过使您受益终生的课程满足您个性化的需求和目标。ACCA成立于1904年,是目前世界上最负盛名的专业会计师团体之一,也是国际上海外学员最多、学员规模发展最快的专业会计师组织。目前在160个国家和地区拥有近30万会员和学员,设有200多个考点,具有真正的国际性。ACCA以高质量的课程设计,高标准的培训要求和高水平的考试安排,赢得联合国和大量国际组织的高度评价,更为众多的跨国公司和专业机构所推崇。ACCA以其独到的全球观念引领会计培训之新潮,率先全面推出以国际会计准则和国际审计准则为基础的教材和考试,以适应世界经济一体化的大趋势。ACCA与我国合作培养的人才,大部分在政府机构、三资企业、著名会计师事务所和大型企业中担任重要职务。

作者简介

  张新民,对外经济贸易大学国际工商管理学院院长、会计学教授。1962年12月生,管理学博士、企业财务状况质量分析理论的创立者,中国会计学会理事、中国对外经济贸易会计学会常务理事。中国对外经济贸易会计学会常务理事。中国大陆高等院校中惟一一位拥有英国特许公认会计师(ACCA)资格的现职会计学教授。 在《会计研究》、《财务与会计》等专业刊物发表论文30余篇;出版专著《企业财务状况质量分析理论研究》(2001年12月),《企业财务报表分析》(2001年2月),《企业财务分析》(2000年10月),《看报表、选股票》(2001年5月)、《中国会计热点问题》(1996年5月);主编《会计学原理》(1999年2月)、《税务会计》(1997年9月)、《中级会计英语》(1995年9月)等多部专业书籍;主译英国特许公认会计师协会著作《高级会计实务》(1996年5月)。等等 吴革,对外经贸大学工商管理学院会计学副教授。1999-2000年曾在香港何铁文会计公司工作一年,在国内先后出版7本专著,并发表编译论文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                  

本目录推荐