自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(3)
  • 资源 (3)
  • 收藏
  • 关注

原创 std::map find insert

<br /> std::map<uint32_t, uint32_t> myhonormap = oDstProfile.GetHonorType();<br /> for(std::map<uint32_t,uint32_t>::const_iterator it = oSrcProfile.GetHonorType().begin(); it != oSrcProfile.GetHonorType().end(); it++)<br /> {<br /> DEBUG_

2011-04-15 10:41:00 1579

原创 c++ string 去掉所有空格

<br /><br />      //去掉sNewTag中所有空格<br />        int begin = 0;<br />        begin = sNewTag.find(" ",begin);  //查找空格在str中第一次出现的位置<br />        while(begin != -1)  //表示字符串中存在空格<br />        {<br />        sNewTag.replace(begin, 1, "");  // 用空串替换str中从begin开始

2011-04-07 11:05:00 18759

原创 c++ string 按空格分开后保存到vector,vector 查找删除

#include #include #include int main (){ std::string orgTags ="宅 ccc 中文试试 hahah"; //std::string orgTags ="没有空格"; std::string sTags = orgTags; std::cout std::vector m_VecTag; int pos = 0; std::string substring = sTags; for(; (pos = s

2011-04-01 14:38:00 4809

c++ essential

essential c++ classic English version pdf format

2010-12-01

算法之外部排序.pdf

算法 之 外部排序(上海交大 课件) 1、外存信息的存取 2、外部排序的方法 3、多路平衡归并的实现 4、置换-选择排序 5、最佳归并树

2010-11-16

MIT-c++-2009.zip

MIT 开放课程 C++ http://ocw.mit.edu/courses/

2010-11-16

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除