R에서 python dict와 동등하게 만들고 싶습니다. 기본적으로 python에서는 다음과 같습니다.
visited = {}
if atom_count not in visited:
Do stuff
visited[atom_count] = 1
아이디어는 특정 atom_count를 본 경우 방문한 것입니다 [atom_count] = 1입니다. 따라서 해당 atom_count를 다시 보면 "Do Stuff"를 수행하지 않습니다. Atom_Count는 정수입니다.
감사!
hash
거의 Python과 유사한 액세스 기능이 있는 R 패키지 를 참조하십시오 .