Write your own compare function in C++ to compare two dates and find which is earlier. Use this compare function to create a min-heap to find the employee who is senior-most w.r.t. date of joining. Use the previous Min heap class. In node use class Date { int month; int day; int year; public: Date(int, int, int); Date& operator < (const Date
Write your own compare function in C++ to compare two dates and find which is earlier. Use this compare function to create a min-heap to find the employee who is senior-most w.r.t. date of joining.
Use the previous Min heap class. In node use
class Date
{
int month;
int day;
int year;
public:
Date(int, int, int);
Date& operator < (const Date & ref) const;
// and other relational operators
// and complete class
};
class Employee
{
string first_name;
string last_name;
int age;
Date date_of_joining;
};
class Min_heap;
Following functionalities are required to be done as your main task in C++.
Implementation of the basic graph class. And following marks are as follows.
- Count all possible paths between two nodes.
- Find a transpose graph, in which all incoming edges will become outgoing edges and vice versa.
- Find single source all destination shortest paths using Dijkstra’s
algorithm . - Find the shortest path between a source and a destination vertex. Any algorithm except Dijkstra.
![](/static/compass_v2/shared-icons/check-mark.png)
Step by step
Solved in 2 steps
![Blurred answer](/static/compass_v2/solution-images/blurred-answer.jpg)
![Computer Networking: A Top-Down Approach (7th Edi…](https://www.bartleby.com/isbn_cover_images/9780133594140/9780133594140_smallCoverImage.gif)
![Computer Organization and Design MIPS Edition, Fi…](https://www.bartleby.com/isbn_cover_images/9780124077263/9780124077263_smallCoverImage.gif)
![Network+ Guide to Networks (MindTap Course List)](https://www.bartleby.com/isbn_cover_images/9781337569330/9781337569330_smallCoverImage.gif)
![Computer Networking: A Top-Down Approach (7th Edi…](https://www.bartleby.com/isbn_cover_images/9780133594140/9780133594140_smallCoverImage.gif)
![Computer Organization and Design MIPS Edition, Fi…](https://www.bartleby.com/isbn_cover_images/9780124077263/9780124077263_smallCoverImage.gif)
![Network+ Guide to Networks (MindTap Course List)](https://www.bartleby.com/isbn_cover_images/9781337569330/9781337569330_smallCoverImage.gif)
![Concepts of Database Management](https://www.bartleby.com/isbn_cover_images/9781337093422/9781337093422_smallCoverImage.gif)
![Prelude to Programming](https://www.bartleby.com/isbn_cover_images/9780133750423/9780133750423_smallCoverImage.jpg)
![Sc Business Data Communications and Networking, T…](https://www.bartleby.com/isbn_cover_images/9781119368830/9781119368830_smallCoverImage.gif)