Lines Matching refs:cur_path
67 1: def DFS (root, word, cur_path):
79 13: return cur_path
84 18: cur_path = cur_path + "L"
85 19: return DFS (left_child_ptr, word, cur_path)
90 24: cur_path = cur_path + "R"
91 25: return DFS (right_child_ptr, word, cur_path)
522 def DFS(root, word, cur_path):
556 return cur_path
564 cur_path = cur_path + "L"
565 return DFS(left_child_ptr, word, cur_path)
573 cur_path = cur_path + "R"
574 return DFS(right_child_ptr, word, cur_path)