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)
521 def DFS(root, word, cur_path):
555 return cur_path
563 cur_path = cur_path + "L"
564 return DFS(left_child_ptr, word, cur_path)
572 cur_path = cur_path + "R"
573 return DFS(right_child_ptr, word, cur_path)