zoukankan      html  css  js  c++  java
  • c++ 标准库MAP用法

    #if defined (_MSC_VER)
    #pragma warning(disable: 4786)
    #endif
    #include <iostream>
    #include <map>
    #include <algorithm>

    #include <conio.h>


    int main(int argc, char *argv[])

     /* define a map */   
     
     std::map<int, float> _map;      
     /* insert */   
     
     _map.insert( std::map<int,float>::value_type(0, 32.8) );   
     _map.insert( std::map<int,float>::value_type(1, 33.2) );   
     _map.insert( std::map<int,float>::value_type(2, 35.8) );   
     _map.insert( std::map<int,float>::value_type(3, 36.4) );   
     _map.insert( std::map<int,float>::value_type(4, 37.8) );   
     _map.insert( std::map<int,float>::value_type(5, 35.8) );  

     /* 这个是常用的一种map赋值方法 */  
     _map[7] = 245.3;       
     
     
     /* find by key */  
     std::map<int,float>::iterator itr;   
     itr = _map.find(4); 

     if( itr != _map.end() )   
     {      
      std::cout  << "Item:"  << itr->first << " found, content: " << itr->second << std::endl;
     }       

     std::cout<<std::endl;      
     /* delete item from map */   
     if( itr != _map.end() )   
     {       
      _map.erase(itr);   
     }        /* travel through a map */  


     
     std::map<int,float>::iterator itr1  =  _map.begin();   


     
     for(  ;  itr1  !=  _map.end();  ++itr1 )   
     { 
      std::cout  << "Item:"  << itr1->first << ", content: " << itr1->second << std::endl; 
     }       

     std::cout  << std::endl;        /* empty a map */   

     _map.clear();      

     getch();

     return 0;

    }

    本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/lijiaz5033/archive/2010/01/17/5202177.aspx

  • 相关阅读:
    element_2对话框
    填报
    润乾报表中进度条的一种实现方式
    列名作为分类值时如何画出统计图
    填报之动态扩展列
    自由格式填报的制作
    复杂报表设计之动态报表
    如何通过动态参数实现周报制作
    如何实现行列互换效果?
    大数据集报表点击表头排序
  • 原文地址:https://www.cnblogs.com/joeblackzqq/p/1966588.html
Copyright © 2011-2022 走看看