wpcockroach

导航

2009年3月26日 #

C/C++ TIPS

摘要: List some tips when using C/C++.Use std::sort instead of qsort (At least, in Visual C++). This is because std::sort is faster than qsort. Keys in an associative container are immutable. Keep it in mind, expecially when you are using std::set and std::multiset. Also, iterator and const_iterator for s 阅读全文

posted @ 2009-03-26 19:41 wpcockroach 阅读(198) 评论(0) 推荐(0) 编辑