首页 > 其他 > 详细

用map快速查找

时间:2021-09-03 22:17:31      阅读:29      评论:0      收藏:0      [点我收藏+]

有需要快速查找的数时可以用map

 std::map<std::string, cv::Point3d> all_gps_data;
 std::map<std::string, cv::Point3d>::iterator iter_ =  all_gps_data.find(image_name);
    if(iter_ != all_gps_data.end())
      {
        current_gps=iter_->second;
      }

 

用map快速查找

原文:https://www.cnblogs.com/lockingball/p/15222065.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!