Code Monkey home page Code Monkey logo

lstuff's Introduction

lstuff

This is a collection of C programs that I have written as lab assignments in the past. No guarantee is made on the logical soundness, the elegance, the correctness of these programs, or even if these programs run, but these were enough to make me pass the assignments.

Contents:

  • compiler_design/ - Implementations of various parser generators and code generators.

    • 3_address_code_generation.c - Generates 3 address code from an operator precedence grammar

    • ll1_parser.c - Generates an ll1 parser from a given context free grammar. Written in a hurry. Horrible implementation of the parsing table and probably the first follow set generators as well.

    • lr0_parser.c - Generates an LR parser from a given context free grammar. Less horrible implementation of the parsing table using actual sets. Similar implementation should have been used in the ll1 parser.

    • op_precedence_parser.c - An operator precedence grammar parser.

    • recursive_descent_parser.c - Brute force recursive descent parser generator.

    • shift_reduce_brute_force.c - Brute force shift reduce parser.

    • slr1_parser.c - SLR1 parser. Extended from the LR0 parser code.

  • multithreading/ - Implementation of various problems from the Little Book of Semaphores and elsewhere.

    • baboon2.c - The Baboon Problem. Incorrect solution. (page 177)

    • bankers.c - The Bankers algorithm.

    • h2o.c - The H2O problem. (page 143)

    • hilzer.c - Hilzer's Barbershop problem. (page 133)

    • river.c - River crossing problem. (page 160)

    • search_insert_delete.c - Search-Insert-Delete problem. (page 165)

lstuff's People

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.