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
from tkinter import * | |
from tkinter import messagebox | |
from collections import deque, namedtuple | |
from PIL import Image,ImageTk | |
window = Tk() | |
window.geometry("700x1080") | |
window.title("LPU NAVIGATOR") | |
inf = float('inf') |
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
#include <stdio.h> | |
#include <stdlib.h> | |
struct query | |
{ | |
int id; | |
int arrival_time; | |
int brust_time; |