最佳答案
我想在 R 中做一个相当于 python dict 的东西,基本上在 python 中,我有:
visited = {}
if atom_count not in visited:
Do stuff
visited[atom_count] = 1
这里的思想是,如果我看到特定的 atom _ count,就得到了 visited[atom_count] = 1
。因此,如果我再次看到 atom _ count,那么我不会“ Do Stuff”。Atom_Count
是一个整数。
谢谢!