⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 10_9.cpp

📁 10个比较经典的C++程序。初学者就先多学习学习别人吧。
💻 CPP
字号:
#include <iostream>
#include <set>
#include <algorithm>
using namespace std;
int main()
{   double a[5] = { 2.2, 3.3, 4.4, 5.5, 16.6 };   
    set<double,less< double > > doubleSet( a,a + 5 );
    cout << "doubleSet contains: ";
    copy( doubleSet.begin(), doubleSet.end(), ostream_iterator< double > ( cout, " " ) );
    pair< typedef set< double, less< double > >::const_iterator, bool > p;
    p = doubleSet.insert( 13.8 ); // 向集合容器中插入13.8
    cout << '\n' << *( p.first ) << ( p.second ? " was" : " was not" ) << " inserted";
    cout << "\ndoubleSet contains: ";
    copy( doubleSet.begin(), doubleSet.end(), ostream_iterator< double > ( cout, " " ) );
    p = doubleSet.insert( 5.5 );  // 向集合容器中插入已经存在的5.5
    cout << '\n' << *( p.first ) << ( p.second ? " was" : " was not" ) << " inserted";
    cout << "\ndoubleSet contains: ";
    copy( doubleSet.begin(), doubleSet.end(), ostream_iterator< double > ( cout, " " ) );
	cout << "\nlower_bound(3.5): " << *doubleSet.lower_bound(3.5) << endl;
	cout << "upper_bound(3.5): " << *doubleSet.upper_bound(3.5) << endl;
	cout << "equal_range(3.5): " << *doubleSet.equal_range(3.5).first << " "
		<< *doubleSet.equal_range(3.5).second << endl;
	cout << "lower_bound(9.5): " << *doubleSet.lower_bound(6.5) << endl;
	cout << "upper_bound(9.5): " << *doubleSet.upper_bound(6.5) << endl;
	cout << "equal_range(9.5): " << *doubleSet.equal_range(6.5).first << " "
		<< *doubleSet.equal_range(9.5).second << endl;
	return 0;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -