当前位置:   article > 正文

STL,二叉搜索树(set) _stl搜索二叉树

stl搜索二叉树

《挑战程序设计竞赛》,初级篇–树

// set初步使用
#include <cstdio>
#include <set>
using namespace std;

int main()
{
    set<int> s;

    for(int i = 1; i <= 3; i++)
        s.insert(i);

    set<int>::iterator it;
    it = s.find(1);
    if(it == s.end()) puts("no found");
    else puts("found");

    s.erase(3);
    it = s.find(3);
    if(it == s.end()) puts("no found");
    else puts("found");

    if(s.count(2) != 0) puts("no found");
    else puts("found");

    for(it = s.begin(); it != s.end(); it++)
        printf("%d\n",*it);

    return 0;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/正经夜光杯/article/detail/766123
推荐阅读
相关标签
  

闽ICP备14008679号