Implement depth-first search (DFS) for a graph or tree starting from a given node. Return the order in which nodes are first visited.
The input graph is represented as an adjacency list: a dictionary mapping each node to a list of neighboring nodes. The graph may contain cycles, so your solution must avoid revisiting nodes. If the start node is not present in the graph, return an empty list.
Write a function that takes:
graph: a dictionary where keys are node values and values are lists of adjacent node valuesstart: the node to begin traversal fromReturn:
Use either recursive or iterative DFS, but the traversal must visit each reachable node at most once.
def dfs_traversal(graph, start):