Skip to content

Latest commit

 

History

History
38 lines (26 loc) · 909 Bytes

File metadata and controls

38 lines (26 loc) · 909 Bytes

Questions

# Name Solutions Type
1 Find path \ Easy
2 Linear Scanning Algorithm c++11/14 Hard
x Other problems c++11/14 Easy - Hard

No.1 Title: given bidirectional edges, with start point and end point, find the shortest path from the start to end. ([email protected])

Input:
A - B
A - C
A - D
B - C
B - E
E - F
F - A 
F - B
Expected Output:

With above input, we expect a shortest path from A - E:

Your job:

Your are required to write codes to parsing input and print computed output onto console for testing.

No.2 Linear Scanning Algorithm.

It is important to locate a point within non-convex geometry. Try to implement an algorithm to verify wether a point inside or outside an arbitrary geometry.

No.x Other problems

See the codes