== COP3402 Fall 2011 -- Charles E. Hughes == '''TA''': Steven Zittrower [[BR]] '''Grader''': Wenhui Li [[BR]] '''Office Hours''': HEC 250 - Friday 11-1PM or by appointment. [raw-attachment:Syllabus-COP3402Fall011.pdf Course Syllabus] == Lab Notes == - [raw-attachment:COP3402_Lab_01.pdf Lab 1] (08/31/2011) - [raw-attachment:COP3402_Lab_02.pdf Supplemental Notes] - [raw-attachment:COP3402_Lab_03.pdf Lab 2] (09/07/2011) - [raw-attachment:COP3402_Lab_03_Worksheet.pdf Worksheet for regular expressions / DFAs] and its [raw-attachment:COP3402_Lab_03_Worksheet_Solutions.pdf Solution] - [raw-attachment:MidTerm1SampleQuestions.doc MidTerm Sample Questions] / [raw-attachment:MidTerm1SampleQuestionsKey.doc Key] - [raw-attachment:COP3402_Lab_07.pdf Bison Example] == Final Project == * [raw-attachment:KoolRefParser.c Partial Pseudocode addition to KoolRefParser - Discussed on 11/30/11] == Assignments == * [raw-attachment:COP3402_Fall2011_Assignment_1.pdf Assignment 1 Description] * Sample Test Case 1: [raw-attachment:correct.kool correct.kool] * Sample Test Case 2: [raw-attachment:error.kool error.kool] == Helpful Pages == * [wiki:COP3402Spring2011/InstallEclipseCpp Installing Eclipse for C/C++] * [wiki:COP3402Spring2011/CompilerSettings Required Compiler Settings for all submitted Programs] == Tools == * Flex: [http://gnuwin32.sourceforge.net/packages/flex.htm Download for Windows] and [http://flex.sourceforge.net/manual/ Manual] * [raw-attachment:InstallingFlexWindows.doc Instructions for running flex on Windows] * Bison: [http://gnuwin32.sourceforge.net/packages/bison.htm Download for Windows] and [http://www.gnu.org/software/bison/manual/bison.html Manual] ('''NOTE''': Make sure to install Bison in a path without any spaces, e.g. `C:\GnuWin32`) * [http://www.supereasyfree.com/software/simulators/compilers/principles-techniques-and-tools/parsing-simulator/parsing-simulator.php Parsing Simulator] : For generating FIRST and FOLLOW Sets as well as LL(1) and LR parsing tables * [http://www.swisseduc.ch/compscience/exorciser/ Exorciser] : Generator of exercises in the theory of computing. Of interest for us the CKY parsing implementation.