
Latest posts made by 同学博
-
RE: 粒子与网格归属问题
map<int,int> A; // particle/cell A.insert(pair<int,int>(1,1)); for (map<int,int>::iterator iter = A.begin(); iter!=A.end(); ++iter) { if(iter->second==cellIDYouWant) { cout << iter->first << endl; } }