Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Team Members:
Nisha Rekhawar- SY Comp
Vaibhavi Deshmukh- SY Comp
Samrudhi Patil- SY Comp
Sakshi Bajaj- SY Comp
Video Link- https://drive.google.com/drive/folders/1BP5TEHtOfa6Tr5axrXlzjq70gMDc1QOF?usp=share_link
Project Description:
The project is a travel planner app that has an admin login as well as a user login .This application helps a user to plan a trip according to their preference for the routes i.e once user enters start location and destination they can choose a preferable path for shortest distance or low cost or low travel time. It will also allow the user to see his previous trips or the user can also book pre-planned trips. Here, user will be able to find popular places to visit when they are on a trip. The admin can see all booked trips. He can add or delete a city from the list of cities. Also, the admin can schedule a trip for users.
The project consists of different data structures like Graph , Linked List ,and Priority queue. Here, the graph is used to store the cities that act like vertices and the routes as edges. The main aim is to show the connections between cities for minimum cost, time and distance. We have implemented the Dijkstra algorithm using priority queue for finding the routes with optimal cost, time and distance. We have created linked list of trips which stores the passenger information and the previous trips they have travelled.