List of all posted books

So far we have a total of 1242 books


How To Think Like A Computer Scientist: C++ Version

Post date: 24 Oct 2004
Guidelines to problem-solving as the most important skill for a computer scientist.
 
How To Think Like A Computer Scientist: C++ Version

How To Think Like A Computer Scientist: C++ Version

Post date: 24 Oct 2004
Guidelines to problem-solving as the most important skill for a computer scientist.

C++ In Action: Industrial Strength Programming Techniques

Post date: 24 Oct 2004
Tutorials on object-oriented programming, language features specific to C++, and the large-scale aspects of software development.
Publisher: Addison-Wesley Pub Co
Publication date: 01 Jun 2001
Document Type: Book
 
C++ In Action: Industrial Strength Programming Techniques

C++ In Action: Industrial Strength Programming Techniques

Post date: 24 Oct 2004
Tutorials on object-oriented programming, language features specific to C++, and the large-scale aspects of software development.
Publisher: Addison-Wesley Pub Co
Publication date: 01 Jun 2001
Document Type: Book


C++ Annotations

Post date: 24 Oct 2004
For knowledgeable users of C who would like to make the transition to C++.
Publication date: 31 Dec 2001
 
C++ Annotations

C++ Annotations

Post date: 24 Oct 2004
For knowledgeable users of C who would like to make the transition to C++.
Publication date: 31 Dec 2001


C Elements of Style

Post date: 24 Oct 2004
Guidelines to build a good programming style into your code.
Publisher: Hungry Minds, Inc.
Publication date: 01 Nov 1992
 
C Elements of Style

C Elements of Style

Post date: 24 Oct 2004
Guidelines to build a good programming style into your code.
Publisher: Hungry Minds, Inc.
Publication date: 01 Nov 1992


[No longer available] A Beginners C++

Post date: 24 Oct 2004
A reference for introductory Computer Science courses that use C++ as an implementation language.
Publication date: 31 Dec 2002
Document Type: Textbook
 
[No longer available] A Beginners C++

[No longer available] A Beginners C++

Post date: 24 Oct 2004
A reference for introductory Computer Science courses that use C++ as an implementation language.
Publication date: 31 Dec 2002
Document Type: Textbook


Think Java: How to Think Like a Computer Scientist (Version 5)

Post date: 24 Oct 2004
An introduction to Java programming for beginners. It is tailored for students preparing for the Computer Science Advanced Placement (AP) Exam, but it is for anyone who wants to learn Java.
 
Think Java: How to Think Like a Computer Scientist (Version 5)

Think Java: How to Think Like a Computer Scientist (Version 5)

Post date: 24 Oct 2004
An introduction to Java programming for beginners. It is tailored for students preparing for the Computer Science Advanced Placement (AP) Exam, but it is for anyone who wants to learn Java.

Semantics with Applications: A Formal Introduction

Post date: 24 Oct 2004
The book covers the foundations of structural operational semantics (where computations consist of many small steps) and natural semantics (where computations consist of one big step).
Publisher: John Wiley & Sons
Publication date: 01 Apr 1992
 
Semantics with Applications: A Formal Introduction

Semantics with Applications: A Formal Introduction

Post date: 24 Oct 2004
The book covers the foundations of structural operational semantics (where computations consist of many small steps) and natural semantics (where computations consist of one big step).
Publisher: John Wiley & Sons
Publication date: 01 Apr 1992


The Gentle Compiler Construction System

Post date: 24 Oct 2004
Presents Gentle, an integrated system for compiler writers that supports the description of compilers at a very high level and relieves users from the need to deal with implementation details.
Publisher: R. Oldenbourg Verlag
Publication date: 31 Dec 1997
 
The Gentle Compiler Construction System

The Gentle Compiler Construction System

Post date: 24 Oct 2004
Presents Gentle, an integrated system for compiler writers that supports the description of compilers at a very high level and relieves users from the need to deal with implementation details.
Publisher: R. Oldenbourg Verlag
Publication date: 31 Dec 1997


Partial Evaluation and Automatic Program Generation

Post date: 24 Oct 2004
This book is about partial evaluation, a program optimization technique also known as program specialization. It presents general principles for constructing partial evaluators for a variety of programming languages, with examples of applications.
Publisher: Prentice Hall
Publication date: 01 Jun 1993
 
Partial Evaluation and Automatic Program Generation

Partial Evaluation and Automatic Program Generation

Post date: 24 Oct 2004
This book is about partial evaluation, a program optimization technique also known as program specialization. It presents general principles for constructing partial evaluators for a variety of programming languages, with examples of applications.
Publisher: Prentice Hall
Publication date: 01 Jun 1993


Let's Build a Compiler

Post date: 24 Oct 2004
A fifteen-part tutorial series, written from 1988 to 1995, on the theory and practice of developing language parsers and compilers from scratch.
Publication date: 31 Dec 1988
 
Let's Build a Compiler

Let's Build a Compiler

Post date: 24 Oct 2004
A fifteen-part tutorial series, written from 1988 to 1995, on the theory and practice of developing language parsers and compilers from scratch.
Publication date: 31 Dec 1988


Implementing functional languages: a tutorial

Post date: 24 Oct 2004
A practical approach to understanding implementations of non-strict functional languages using lazy graph reduction.
Publisher: Prentice Hall
Publication date: 31 Dec 1992
 
Implementing functional languages: a tutorial

Implementing functional languages: a tutorial

Post date: 24 Oct 2004
A practical approach to understanding implementations of non-strict functional languages using lazy graph reduction.
Publisher: Prentice Hall
Publication date: 31 Dec 1992


Flex Online Manual

Post date: 24 Oct 2004
The online manual for Flex, a fast lexical analyser generator, generating programs that perform pattern-matching on text.
Publication date: 22 Jul 2012
License: GNU Free Documentation License
Document Type: Book
 
Flex Online Manual

Flex Online Manual

Post date: 24 Oct 2004
The online manual for Flex, a fast lexical analyser generator, generating programs that perform pattern-matching on text.
Publication date: 22 Jul 2012
License: GNU Free Documentation License Document Type: Book


Compiler Construction using Flex and Bison

Post date: 24 Oct 2004
A guide to compiler construction using compiler's compiler tools like Flex and Bison. Using both tools, you can focus on the concept of compiler without the hassle of building a compiler from scratch.
Publication date: 31 Dec 1996
 
Compiler Construction using Flex and Bison

Compiler Construction using Flex and Bison

Post date: 24 Oct 2004
A guide to compiler construction using compiler's compiler tools like Flex and Bison. Using both tools, you can focus on the concept of compiler without the hassle of building a compiler from scratch.
Publication date: 31 Dec 1996


Bison Online Manual

Post date: 24 Oct 2004
The online manual of Bison, a general-purpose parser generator that converts a grammar description for an LALR context-free grammar into a C program to parse that grammar.
Publication date: 01 May 2002
License: GNU Free Documentation License
 
Bison Online Manual

Bison Online Manual

Post date: 24 Oct 2004
The online manual of Bison, a general-purpose parser generator that converts a grammar description for an LALR context-free grammar into a C program to parse that grammar.
Publication date: 01 May 2002
License: GNU Free Documentation License


A Compact Guide to Lex & Yacc

Post date: 24 Oct 2004
Explains how to construct a compiler using lex and yacc, the tools used to generate lexical analyzers and parsers.
Publication date: 30 Nov -0001
 
A Compact Guide to Lex & Yacc

A Compact Guide to Lex & Yacc

Post date: 24 Oct 2004
Explains how to construct a compiler using lex and yacc, the tools used to generate lexical analyzers and parsers.
Publication date: 30 Nov -0001


Book Categories
Sponsors