2012-03-01から1ヶ月間の記事一覧

池の周り何周目でおいつくかな?

よく、池の周りを走ります。 ふと、頭のなかで何週目で私より少し遅く走っている人を抜けるかなーと考えていた。私が10Km/h ある人は5km/h 池の周囲は1.2km 同時に出発したといしてー、x分後においつくと仮定するとー、 こんな式が浮かんだ、10x%1.2 = 5x%1.…

iterator < vector.end() 比較

c++

vectorのiteratorは基本 インクリメントするようにしか 設計されていない。iter同士の比較はあてにならない。多分つかってはいけない。 e.g.vector v; vector::iterator i = v.begin(); i += 5; if(i!=v.end()){ i++; } 上は無限ループかな?if(i } こういう…

vector with printf

C++

for those who uses c++ for long might think this is trivial.vector v_str; v_str.push_back("hello"); printf("%s\n", v_str[0]); give you "null"because printf doesn't covert string to c string itself, you have to do it yourself, like v_str[0]…

Profiler

I found that profiler in python is very handy and easy to use! python profiler in interactive mode