










Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
The implementation and assessment of complex data structures and algorithms for a middleware application that handles message transfer and processing. The report covers the design and implementation of a queue and a stack data structure, along with error handling and testing procedures. It also evaluates the complexity of the implemented algorithms, the benefits of using implementation-independent data structures, and the effectiveness of the algorithms in solving the defined problem. A comprehensive overview of the technical aspects involved in developing and evaluating the data structures and algorithms, making it a valuable resource for students and professionals working in the field of computer science and software engineering.
Typology: Summaries
1 / 18
This page cannot be seen from the preview
Don't miss anything!











Qualification BTEC Level 5 HND Diploma in Computing Unit number and title Unit 19 : Data Structures and Algorithms Submission date Date Received 1st submission Re-submission Date Date Received 2nd submission Student Name Nguyen Anh Khoa Student ID GCS Class GCS0903B Assessor name Le Ngoc Thanh Student declaration I certify that the assignment submission is entirely my own work and I fully understand the consequences of plagiarism. I understand that making a false declaration is a form of malpractice. Student’s signature Grading grid P1 P2 P3 M1 M2 M3 D1 D
Assignment Brief 2 (RQF) Higher National Certificate/Diploma in Business Student Name/ID Number: Unit Number and Title: Unit 19: Data Structures and Algorithms Academic Year: 2021 Unit Assessor: Assignment Title: Implement and assess specific DSA Issue Date: Submission Date: Internal Verifier Name: Date: Submission Format: Format: ● The submission is in the form of an individual written report and a presentation. This should be written in a concise, formal business style using single spacing and font size 12. You are required to make use of headings, paragraphs and subsections as appropriate, and all work must be supported with research and referenced using the Harvard referencing system. Please also provide a bibliography using the Harvard referencing system. Submission ● Students are compulsory to submit the assignment in due date and in a way requested by the Tutor. ● The form of submission will be a soft copy posted on http://cms.greenwich.edu.vn/. ● Remember to convert the word file into PDF file before the submission on CMS. Note: ● The individual Assignment must be your own work, and not copied by or from another student. ● If you use ideas, quotes or data (such as diagrams) from books, journals or other sources, you must reference your sources, using the Harvard style. ● Make sure that you understand and follow the guidelines to avoid plagiarism. Failure to comply this requirement will result in a failed assignment.
Unit Learning Outcomes: LO3 Implement complex data structures and algorithms LO4 Assess the effectiveness of data structures and algorithms Assignment Brief and Guidance: Assignment scenario Continued from Assignment 1. Tasks For the middleware that is currently developing, one part of the provision interface is how message can be transferred and processed through layers. For transport, normally a buffer of queue messages is implemented and for processing, the systems requires a stack of messages. The team now has to develop these kind of collections for the system. They should design ADT / algorithms for these 2 structures and implement a demo version with message is a string of maximum 250 characters. The demo should demonstrate some important operations of these structures. Even it’s a demo, errors should be handled carefully by exceptions and some tests should be executed to prove the correctness of algorithms / operations. The team needs to write a report of the implementation of the 2 data structures and how to measure the efficiency of related algorithms. The report should also evaluate the use of ADT in design and development, including the complexity, the trade-off and the benefits.
I. Implement a complex ADT and algorithm in an executable programming language to solve a well defined problem
The system should be designed ADT / algorithms for these 2 structures and implement a demo version with message is a string of maximum 250 characters. The demo should demonstrate some important operations of these structures. Even it’s a demo, errors should be handled carefully by exceptions and some tests should be executed to prove the correctness of algorithms / operations.
An exception is a problem that arises during the execution of a program. A java exception is a response to an exceptional circumstance that arises while a program is running. Exceptions provide a way to transfer control from one part of a program to another. java exception handling is built upon four keywords: try, catch, finally, and throw:
Results of running program tests: Check new function is sent message
Check the feature of receiving messages Check the feature of displaying all messages
The system is using Queue as a buffer and Stack to get data to Destination Message. There are a Transfer Function will do that. To visualize the algorithm I will show you how system work with Flow Chart below:
In this system, I have used 3 function in Queue to make a Buffer such as: Enum(), Enqueue() and Dequeue():
In this system, I have used 2 function in Stack to make a Destination Message such as: Push() and Pop():
In order to achieve an efficient Queue implementation, where Queue and Stack operations have the perfect time complexity O(1). But in the Transfer function we have complexity of algorithm is O(n^2) so when we run this program, the complexity is also know as O(n^2). As a result we can see that the time of algorithm increase same as an algorithm's complexity: