Standard escape codes are prefixed with Escape:
- Ctrl-Key:
^[ - Octal:
\033 - Unicode:
\u001b - Hexadecimal:
\x1B - Decimal:
27
| //Applies BFS from both source and destination side and checks after each iteration if the visited | |
| //list from each side are intersecting at any point. If yes, then thats the meeting point and gives the | |
| //path from source to that point and from that point to destination | |
| #include <iostream> | |
| #include <vector> | |
| #include <list> | |
| #include <algorithm> | |
| #include <stdlib.h> | |
| using namespace std; |