|Wystawione w kategorii:
Masz taki przedmiot na sprzedaż?

Technologia kompilatora: narzędzia, tłumacze i implementacja językowa Dereka Bena

Tekst oryginalny
Compiler Technology: Tools, Translators and Language Implementation by Derek Ben
Stan:
Nowy
Dostępne: 7
Cena:
US $186,85
Około731,70 zł
Wysyłka:
Bezpłatnie Economy Shipping. Zobacz szczegółydla wysyłki
Znajduje się w: Fairfield, Ohio, Stany Zjednoczone
Dostawa:
Szacowana między So, 1 cze a Śr, 12 cze do 43230
Szacowane czasy dostaw - otwiera się w nowym oknie lub nowej karcie uwzględniają podany przez sprzedawcę czas na wysłanie przesyłki, kod pocztowy nadawcy, kod pocztowy odbiorcy i czas przyjęcia. Czasy te zależą od wybranego rodzaju usługi wysyłkowej oraz czasu rozliczenia płatnościrozliczona płatność - otwiera się w nowym oknie lub nowej karcie. Czasy dostawy mogą się różnić, szczególnie w okresach największego ruchu.
Zwroty:
Zwrot w ciągu 30 dni. Za wysyłkę zwrotną płaci kupujący. Zobacz szczegóły- aby uzyskać więcej informacji dotyczących zwrotów
Płatności:
     

Kupuj bez obaw

Najlepszy Sprzedawca
Zaufany sprzedawca, szybka wysyłka i łatwe zwroty. 
Gwarancja zwrotu pieniędzy eBay
Otrzymasz przedmiot, jaki zamawiasz, albo zwrot pieniędzy. 

Informacje o sprzedawcy

Zarejestrowany jako sprzedawca-firma
Sprzedawca ponosi pełną odpowiedzialność za wystawienie tej oferty sprzedaży.
Nr przedmiotu eBay: 386700035765
Ostatnia aktualizacja: 01-04-2024 07:38:18 CEST Wyświetl wszystkie poprawkiWyświetl wszystkie poprawki

Parametry przedmiotu

Stan
Nowy: Nowa, nieczytana, nieużywana książka w idealnym stanie, wszystkie strony, bez uszkodzeń. Aby ...
ISBN-13
9781461377849
Book Title
Compiler Technology
ISBN
9781461377849
Publication Name
Compiler Technology : Tools, Translators and Language Implementation
Item Length
9.3in
Publisher
Springer
Series
The Springer International Series in Engineering and Computer Science Ser.
Publication Year
2012
Type
Textbook
Format
Trade Paperback
Language
English
Item Height
0.2in
Author
Derek Beng Kee Kiong
Item Width
6.1in
Item Weight
12.7 Oz
Number of Pages
Xviii, 210 Pages

O tym produkcie

Product Information

Compiler technology is fundamental to computer science since it provides the means to implement many other tools. It is interesting that, in fact, many tools have a compiler framework - they accept input in a particular format, perform some processing and present output in another format. Such tools support the abstraction process and are crucial to productive systems development. The focus of Compiler Technology: Tools, Translators and Language Implementation is to enable quick development of analysis tools. Both lexical scanner and parser generator tools are provided as supplements to this book, since a hands-on approach to experimentation with a toy implementation aids in understanding abstract topics such as parse-trees and parse conflicts. Furthermore, it is through hands-on exercises that one discovers the particular intricacies of language implementation. Compiler Technology: Tools, Translators and Language Implementation is suitable as a textbook for an undergraduate or graduate level course on compiler technology, and as a reference for researchers and practitioners interested in compilers and language implementation.

Product Identifiers

Publisher
Springer
ISBN-10
1461377846
ISBN-13
9781461377849
eBay Product ID (ePID)
159952904

Product Key Features

Author
Derek Beng Kee Kiong
Publication Name
Compiler Technology : Tools, Translators and Language Implementation
Format
Trade Paperback
Language
English
Series
The Springer International Series in Engineering and Computer Science Ser.
Publication Year
2012
Type
Textbook
Number of Pages
Xviii, 210 Pages

Dimensions

Item Length
9.3in
Item Height
0.2in
Item Width
6.1in
Item Weight
12.7 Oz

Additional Product Features

Series Volume Number
422
Number of Volumes
1 Vol.
Lc Classification Number
Qa76.76.C65
Table of Content
1. Introduction to Language Implementation.- 1.1 Translator Strategies.- 1.2 Translator Components.- 1.3 Implementation of Translator Phases.- 1.4 Summary.- 1.5 Questions.- 2. Language Definition.- 2.1 BNF Notations.- 2.2 Construction of Recursive Descent Parsers.- 2.3 Grammar Restrictions.- 2.4 Summary.- 2.5 Questions.- 3. Lexical Scanners.- 3.1 Scanner Framework.- 3.2 Formalisms.- 3.3 Constructing Scanners from Specifications.- 3.4 Constructing a Finite State Machine from a Regular Grammar.- 3.5 Constructing a Finite State Machine from a Regular Expression.- 3.6 Deterministic State Transition.- 3.7 Optimizing a Finite State Machine.- 3.8 Implementation of a Finite State Machine.- 3.9 Considerations for Scanner Implementation.- 3.10 Summary.- 3.11 Questions.- 4. Syntactic Analysis.- 4.1 Recursive Descent Parsing and Top-down Analysis.- 4.2 Bottom-up Analysis.- 4.3 Tree Construction.- 4.4 Generating Parse Configurations.- 4.5 Generating LR(0) Parse Tables.- 4.6 Parsing Conflicts.- 4.7 Extending LR(0) Tables for LR(1) Parsing.- 4.8 Parse Table Optimization: SLR(1) and LALR(1) Methods.- 4.9 Parsing With non-LL(1) or non-LR(1) Grammars.- 4.10 Summary.- 4.11 Questions.- 5. Incorporating Semantic Analysis.- 5.1 Syntax-Directed Analysis.- 5.2 Semantic Analysis in a Recursive Descent Parser.- 5.3 Specifying Action Routines in Generated Parsers.- 5.4 Attribute Propagation within Parser Drivers.- 5.5 yacc Example.- 5.6 Inherited and Synthesized Attribute Propagation.- 5.7 Summary.- 5.8 Questions.- 6. Semantic Processing.- 6.1 General Structure of Programming Languages.- 6.2 Symbol Tables.- 6.3 Type Definitions.- 6.4 Processing Summary.- 6.5 Formal Specifications via Attribute Grammars.- 6.6 Example Specification of a Block Structured Language.- 6.7 Attribute Evaluation Strategies.- 6.8 Summary.- 6.9 Questions.- 7. The Program Run-Time Environment.- 7.1 Program Representations.- 7.2 Storage Allocations.- 7.3 Dynamic Variables.- 7.4 Summary.- 7.5 Questions.- 8. Intermediate Code and Interpreters.- 8.1 Intermediate Representation.- 8.2 Syntax-Directed Translation.- 8.3 Representing a Nested Block-Structured Language.- 8.4 Interpreter Implementation.- 8.5 Efficiency Improvements.- 8.6 Summary.- 8.7 Questions.- 9. Code Generation.- 9.1 Macro Expansion.- 9.2 Register Allocation.- 9.3 Instruction Sequencing.- 9.4 Instruction and Addressing Mode Selection.- 9.5 Summary.- 9.6 Questions.
Copyright Date
1997
Topic
Systems Architecture / General, Operating Systems / General, Compilers
Intended Audience
Scholarly & Professional
Illustrated
Yes
Genre
Computers

Opis przedmiotu podany przez sprzedawcę

Informacje o firmie

Premier Books LLC
David Taylor
26C Trolley Sq
19806-3356 Wilmington, DE
United States
Pokaż informacje kontaktowe
:liam-Emoc.liaterelgaednarg@yabe
Oświadczam, że wszystkie moje działania związane ze sprzedażą będą zgodne z wszystkimi przepisami i regulacjami UE.
grandeagleretail

grandeagleretail

98,2% opinii pozytywnych
Sprzedane przedmioty: 2,7 mln
Zwykle odpowiada w ciągu 24 godzin

Oceny szczegółowe

Średnia z ostatnich 12 miesięcy

Dokładność opisu
4.9
Przystępny koszt wysyłki
5.0
Szybkość wysyłki
4.9
Komunikacja
4.9
Zarejestrowany jako sprzedawca-firma

Opinie sprzedawców (1 023 020)

3***i (422)- Opinie wystawione przez kupującego.
Ostatni miesiąc
Zakup potwierdzony
Excellent item
r***a (2097)- Opinie wystawione przez kupującego.
Ostatni miesiąc
Zakup potwierdzony
Excellent packaging and great service!
_***i (178)- Opinie wystawione przez kupującego.
Ostatni miesiąc
Zakup potwierdzony
Great transaction. Fast shipping. Would buy from this seller again