91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C++ map如何實現根據value找key

發布時間:2021-05-31 13:09:22 來源:億速云 閱讀:653 作者:小新 欄目:編程語言

小編給大家分享一下C++ map如何實現根據value找key,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!

測試所需頭文件

#include <algorithm>  
#include <vector>   
#include <map>
#include <string>

初始

std::map<int, std::string> t;
  t.insert(std::make_pair(1, "a"));
  t.insert(std::make_pair(2, "b"));
  t.insert(std::make_pair(3, "c"));
  t.insert(std::make_pair(4, "d"));

根據key 找 value

std::string s = "";
  auto it = t.find(2);
  if (it != t.end())
  {
    s = (*it).second;
  }

根據value 找key lambda方式

std::string s = "c";
  auto find_item = std::find_if(t.begin(), t.end(),
    [s](const std::map<int, std::string>::value_type item)
  {
    return item.second == s;
  });

  int n = 0;
  if (find_item!= t.end())
  {
    n = (*find_item).first;
  }

根據value 找key 函數對象方式

class finder
{
public:
  finder(const std::string &cmp_string) :s_(cmp_string){}
  bool operator ()(const std::map<int, std::string>::value_type &item)
  {
    return item.second == s_;
  }
private:
  const std::string &s_;
};


//調用
int n = 0;
auto it = std::find_if(t.begin(), t.end(), finder("d"));
  if (it != t.end())
  {
    n = (*it).first;
  }

看完了這篇文章,相信你對“C++ map如何實現根據value找key”有了一定的了解,如果想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

延安市| 宿迁市| 芜湖县| 贺兰县| 彰化县| 长治县| 大连市| 永年县| 广元市| 湖北省| 辛集市| 遂平县| 黄浦区| 晴隆县| 金山区| 增城市| 临沧市| 合肥市| 巩义市| 美姑县| 陆丰市| 渝中区| 泰兴市| 扬中市| 绥棱县| 渑池县| 浦东新区| 宿迁市| 清原| 台中市| 广东省| 涞水县| 武隆县| 正蓝旗| 红原县| 黄山市| 景洪市| 丹东市| 井冈山市| 苗栗县| 延边|