是孤衾呀 2021-11-11 21:40 采纳率: 100%
浏览 46
已结题

关于STL大法的vector的用法

img

img

有没有STL的大佬,本蒟蒻在这%%%
不是要普通的函数,是STL自带的函数。
这个题虽然说已经ac了,但是我想用vector来写,主要是针对问题3,怎么用STL的find函数去返回找到的位置。
附上已经打好了的部分代码

img

  • 写回答

1条回答 默认 最新

  • CSDN专家-Time 2021-11-12 09:24
    关注
    // find example
    #include <iostream>     // std::cout
    #include <algorithm>    // std::find
    #include <vector>       // std::vector
    
    int main () {
      // using std::find with array and pointer:
      int myints[] = { 10, 20, 30, 40 };
      int * p;
    
      p = std::find (myints, myints+4, 30);
      if (p != myints+4)
        std::cout << "Element found in myints: " << *p << '\n';
      else
        std::cout << "Element not found in myints\n";
    
      // using std::find with vector and iterator:
      std::vector<int> myvector (myints,myints+4);
      std::vector<int>::iterator it;
    
      it = find (myvector.begin(), myvector.end(), 30);
      if (it != myvector.end())
        std::cout << "Element found in myvector: " << *it << '\n';
      else
        std::cout << "Element not found in myvector\n";
    
      return 0;
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

问题事件

  • 已结题 (查看结题原因) 11月20日
  • 已采纳回答 11月17日
  • 修改了问题 11月11日
  • 修改了问题 11月11日
  • 展开全部

悬赏问题

  • ¥15 远程桌面文档内容复制粘贴,格式会变化
  • ¥15 关于#java#的问题:找一份能快速看完mooc视频的代码
  • ¥15 这种微信登录授权 谁可以做啊
  • ¥15 请问我该如何添加自己的数据去运行蚁群算法代码
  • ¥20 用HslCommunication 连接欧姆龙 plc有时会连接失败。报异常为“未知错误”
  • ¥15 网络设备配置与管理这个该怎么弄
  • ¥20 机器学习能否像多层线性模型一样处理嵌套数据
  • ¥20 西门子S7-Graph,S7-300,梯形图
  • ¥50 用易语言http 访问不了网页
  • ¥50 safari浏览器fetch提交数据后数据丢失问题