Below is the adjacency list of a graph. Which of the following is a Hamiltonian cycle in this graph? (Select all that apply.)
1 -> 2,3,5
2 -> 4,5
3 -> 1,2,5
4 -> 1,3
5 -> 2,4
2 -> 4 -> 3 -> 5 -> 2
1 -> 5 -> 2 -> 4 -> 3 -> 1
1 -> 2 -> 3 -> 4 -> 5 -> 1
1 -> 3 -> 5 -> 2 -> 4 -> 1