Priorities Presentation
Priorities Presentation
DATA STRUCTURE
AND ALGORTHEM
: TABLE CONTENTS
◾ 01 ◾ 05
◾ Table of contents ◾ Methodology
◾ 02 ◾ 06
◾ Abstract/Summary ◾ Results
◾ 03 ◾ 07
◾ Introduction ◾ Conclusion
◾ 04 ◾ 08
◾ Problem Statements ◾ References
: SUMMARY
: In this report we will talk about
Introduction about praiority logic that includes examples of praiority logic , definition -
. of praiority logic
. problem statement and how we build the program and all functions we used -
: solution of problem that includes -
. Data structure we used and whay we use it*
. How the code work step by step and wich the algorithm we used *
. the program code and what output we should get it by program *
. show the results from our program -
: INTRODUCTION
◾ In our life we need to manage thing in spicific order like: from big to small or
from most important to less important this logic called priority . It is so ,
efficiently to implement priority in all side of our life it helps us to manage our
task, or things to preform tasks in short time that logic can be useful on our
program to manage lists from higher level to lower level . As a result that
give us the definition of priority which is a collection of elements where the
.elements are stored according to their priority levels
: PROBLEM STATEMENT
At first, Linked list is a node based data structure , so that we can easily insert and delete any
node in just one step . In addition, it represents the nodes as a list of elements . Secondly, there
Is unlimited number of elements , because it allocate the size dynamicly . At conclusion, the
. complexpity is always O(N) in deletion, search and traversing
: CONCLUSION
In this project , we solve one of the companies issue which is the priority of the orders , how can we execute the orders in the
right
.order? what will happened to the list if we do some changes at their order? all these questions we have answer it in our project
ExecuteOrder ()
waitingList()
: REFERNCES