Skip to content

Instantly share code, notes, and snippets.

View zibon's full-sized avatar

Khondoker Md. Razequl Islam zibon

View GitHub Profile
// Structure for Point, Geo coordinates can be represented with it
typedef struct
{
double X, Y;
}Point;
// Structure to keep cost, distance and traveltime. If distance/ traveltime is missing, there may be a negative flag
typedef struct