- Find a Longest Comment Subsequence (LCS) of x = < 1, 0, 0, 1, 0, 1, 0, 1> and y = <0, 1, 0, 1, 1, 0, 1, 1, 0>
- According to the following adjacency list (Fig.1), draw the corresponding directed graph.
- According to the following adjacency matrix (Fig.2), draw the corresponding undirected graph.
4. Given the following undirected graph.
- (1) Draw the Depth First Search (DFS) trees corresponding to this graph.
- (2) Draw the Breath First Search (BFS) trees corresponding to this graph.
1



