Changes between Initial Version and Version 1 of COP3402Spring2011


Ignore:
Timestamp:
08/25/11 21:00:55 (13 years ago)
Author:
admin
Comment:

First version copied from Remo's Wiki

Legend:

Unmodified
Added
Removed
Modified
  • COP3402Spring2011

    v1 v1  
     1= COP 3402 (Systems Software) - Spring 2011 =
     2
     3'''TA''': Remo Pillat [[BR]]
     4'''E-Mail''': rpillat@knights.ucf.edu [[BR]]
     5
     6'''Office Hours''': M 2:30 - 4:30 p.m. (HEC 308) [or by appointment]
     7
     8== Final Exam Preparation ==
     9 - I will have '''extended office hours''' on Monday, 25 April from 2:00 p.m. - 5:00 p.m. in HEC 308
     10 - '''Exam Review Session''': Wednesday, 27 April from 12:00 p.m. - 2:00 p.m. in HEC 101
     11  - [raw-attachment:COP3402_Final_Review_Session.pdf Review Session Notes]
     12== Lab Notes ==
     13 - [raw-attachment:COP3402_Lab_01.pdf Lab 1] (01/20/2011)
     14 - [raw-attachment:COP3402_Lab_02.pdf Lab 2] (01/27/2011)
     15 - [raw-attachment:COP3402_Lab_03.pdf Lab 3] (02/03/2011)
     16  - [raw-attachment:COP3402_Lab_03_Worksheet.pdf Worksheet for regular expressions / DFAs] and its [raw-attachment:COP3402_Lab_03_Worksheet_Solutions.pdf Solution]
     17 - [raw-attachment:COP3402_Lab_04.pdf Lab 4] (02/10/2011)
     18  - [raw-attachment:COP3402_Lab_04_Worksheet.pdf Worksheet on grammars] and its [raw-attachment:COP3402_Lab_04_Worksheet_Solutions.pdf Solution]
     19 - [raw-attachment:COP3402_Lab_05.pdf Lab 5] (02/17/2011) - Review for Midterm 1
     20 - [raw-attachment:COP3402_Lab_06.pdf Lab 6] (02/24/2011) - FIRST/FOLLOW review and CKY Parser
     21 - [raw-attachment:COP3402_Lab_07.pdf Lab 7] (03/03/2011) - Flex/Bison example, Assignment 4
     22  - The calculator files that are developed in the lab notes, can be downloaded [raw-attachment:COP3402_Lab_07_Calculator_Flex_Bison.zip here].
     23 - [raw-attachment:COP3402_Lab_08.pdf Lab 8] (03/17/2011) - More Assignment 4 details
     24  - The example file structure suggested in the lab notes can be downloaded [raw-attachment:COP3402_Lab_08_Assignment_4_Skeleton.zip here].
     25 - [raw-attachment:COP3402_Lab_09.pdf Lab 9] (03/24/2011) - Bottom-Up Parsing, SLR Parser
     26  - [raw-attachment:COP3402_Lab_09_Worksheet.pdf Worksheet on SLR Parser] and its [raw-attachment:COP3402_Lab_09_Worksheet_Solutions.pdf Solution]
     27 - [raw-attachment:COP3402_Lab_10.pdf Lab 10] (03/31/2011) - SLR Parser Part 2, Synthesized and Inherited Attributes
     28 - [raw-attachment:COP3402_Lab_11.pdf Lab 11] (04/07/2011) - Attributes Review, First Notes on Final Project
     29 - [raw-attachment:COP3402_Lab_12.pdf Lab 12] (04/14/2011) - Review of Recursive Descent Parsing in C, More Notes on Final Project
     30 - [raw-attachment:COP3402_Lab_13.pdf Lab 13] (04/21/2011) - Final Project, Final Exam
     31
     32== Final Project ==
     33 - '''[raw-attachment:COP3402_Final_Project_Grading_Criteria.pdf Grading Criteria]''' and '''[raw-attachment:COP3402_Final_Project_Test_and_Reference.zip Test/Reference Files]'''
     34[[BR]]
     35 - [raw-attachment:COP3402_Final_Project_Skeleton.zip Skeleton code] for the final project (contains a fully functional lexical analyzer and supplemental parsing routines)
     36 - If you are still struggling with the basic concept on how you would code a recursive descent parser in C, there is a [http://teaching.idallen.com/cst8152/98w/recursive_decent_parsing.html pretty good tutorial] on how you would implement expression parsing in C.
     37
     38== Assignments ==
     39 - Assignment 1a - [raw-attachment:COP3402_Assignment_1a_Grading_Criteria.pdf Grading Criteria] and [raw-attachment:COP3402_Assignment_1a_Test_and_Reference.zip Test/Reference Files]
     40 - Assignment 1b - [raw-attachment:COP3402_Assignment_1b_Grading_Criteria.pdf Grading Criteria] and [raw-attachment:COP3402_Assignment_1b_Test_and_Reference.zip Test/Reference Files]
     41 - Assignment 2 - [raw-attachment:COP3402_Assignment_2_Grading_Criteria.pdf Grading Criteria] and [raw-attachment:COP3402_Assignment_2_Test_and_Reference.zip Test/Reference Files]
     42 - Assignment 3 - [raw-attachment:COP3402_Assignment_3_Grading_Criteria.pdf Grading Criteria] and [raw-attachment:COP3402_Assignment_3_Solution.pdf Solution]
     43 - Assignment 4 - [raw-attachment:COP3402_Assignment_4_Grading_Criteria.pdf Grading Criteria] and [raw-attachment:COP3402_Assignment_4_Test_and_Reference.zip Test/Reference Files]
     44
     45== Helpful Pages ==
     46
     47 - [wiki:COP3402Spring2011/InstallEclipseCpp Installing Eclipse for C/C++]
     48 - [wiki:COP3402Spring2011/CompilerSettings Required Compiler Settings for all submitted Programs]
     49
     50== Tools ==
     51
     52 - Flex: [http://gnuwin32.sourceforge.net/packages/flex.htm Download for Windows] and [http://flex.sourceforge.net/manual/ Manual]
     53 - Bison: [http://gnuwin32.sourceforge.net/packages/bison.htm Download for Windows] and [http://www.gnu.org/software/bison/manual/bison.html Manual]
     54   ('''NOTE''': Make sure to install Bison in a path without any spaces, e.g. {{{C:\GnuWin32}}})
     55
     56 - [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
     57 - [http://www.swisseduc.ch/compscience/exorciser/ Exorciser] : Generator of exercises in the theory of computing. Of interest for us the CKY parsing implementation.