1 / 15

10 Nov

10 Nov. HW 3 Remember to submit a .jsp file: for a valid int for an int with errors that produces the java program Structure clashes HW 4: Backtracking Exercise. Data structure for a well-formed Integer. Possible errors. We want the error messages to be useful.

morgan
Download Presentation

10 Nov

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. 10 Nov HW 3 Remember to submit a .jsp file: for a valid int for an int with errors that produces the java program Structure clashes HW 4: Backtracking Exercise

  2. Data structure for a well-formed Integer

  3. Possible errors We want the error messages to be useful. What are the different possible errors? • Start with non-sign, non-digit • Signed integer • Non-digit immediately after sign • Non-digit in digit body • Unsigned integer • Non-digit in digit body

  4. Data structure for identifier with possible errors

  5. Simple Programs The design method described above applies only to a class of "simple programs'. A 'simple program' has the following attributes: • The program has a fixed initial state; nothing is remembered from one execution to the next. • Program inputs and outputs are serial files. There may be more than one input and more than one output file. • Each input and output file associated with the program is a tree structure and can be described with a grammar for regular expressions • The input data structures define the domain of the program, the output data structures its range. • Nothing is introduced into the program text which is not associated with the defined data structures. • The data structures are compatible, in the sense that they can be combined into a program structure as we done previously • The program structure derived from the data structures is sufficient for a workable program. • Elementary operations of the program language (possibly supplemented by more powerful or suitable operations resulting from bottom-up designing) are allocated to components of the program structure without introducing any further 'program logic'.

  6. More complex programs:Structure Clashes Three types of structural clash: • Boundary clash (physical blocks on input don’t coincide with logical groups on output) • Ordering clash (wish report sorted by named, input is unsorted) • Interleaving clash (wish to produce report of user job times, inputs are interleaved)

  7. Boundary clash example: An accounting program may have a boundary clash between an input file structured by months and an output file structured by weeks.from Jackson JSP In Perspective (2001)

  8. Examples: Boundary Clashes Boundary clashes: • The calendar consists of years, each year consisting of a number of days. In one structure the days may be grouped by months, but by weeks in another structure. There is a boundary clash here: the weeks and months can not be synchronised. • A chapter of a printed book consists of text lines. In one structure the lines may be grouped by paragraphs, but in another structure by pages. There is a boundary clash because pages and paragraphs can not be synchronised. • A file in a low-level file handling system consists of variable-length records, each consisting of between 2 and 2000 bytes. The records must be stored sequentially in fixed blocks of 512 bytes. There is a boundary clash here: the boundaries of the records can not be synchronised with the boundaries of the blocks.

  9. Solution to Structural Clashes • General view of problem Structure diagram • Solution: program decomposition Program decomposition There is no structure clash between A and I, so the structure of PA can be constructed without difficulty; the same is true of I and X and PB

  10. Processing - general view: • Batch processing (пакетная обработка данных) • Parallel processing • Quasi-parallel processing (program inversion) program inversion

  11. Program Inversion инверсия программов • We wish to design PA and PB independently of each other so that the structure of each is based on the data structure representation of its own problem environment. • Program inversion is a purely mechanical transformation of the independent programs, PA and PB, into a main program and subroutine • The subroutine has a single ENTRY point and stores its return address within its state vector so that it is resumable.

  12. HW 4: Backtracking ExerciseWarehouse (товарный склад) A warehouse records a transaction for every item received into or issued out of the warehouse: Transaction: 0-3 Item code • ‘+’ (in), ‘-’ (out) 9-10 initialization (контроль)

  13. Backtracking Exercise:Warehouse (товарный склад) • At the end of the day, the transaction file is sorted by item number, and a "Daily Net Movement Summary" showing the net movement of each item into or out of the warehouse is produced as shown below: Daily Summary A12345 40 A23456 -30 .......... Z13579 25 End Summary

  14. Backtracking Exercise:Warehouse (товарный склад) • However, parts are to be included on the report only if every shipment and order transaction has been properly verified, as indicated by a code in the initials field on each transaction record. • Parts with one or more unverified shipment or order transactions, indicated by a blank in the initials field, should be written on an error listing; they are not to be included in the report (no total line should be generated).

  15. Backtracking exercise We don't know how many shipment and order transactions exist for any part number. • Thus, we don't know how many records we have to read in order to recognize whether we have a part all of whose shipments and orders have been verified. • Need to use backtracking Develop solution in 3 stages, creating a .jsp file for: • Stage 1 (ignoring the recognition difficulty • Stage 2 (using posit and admit) • Stage 3 (taking care of side effects) • Elaborated program structure

More Related