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

📄 c11p638a.txt

📁 Data Abstraction & Problem Solving with C++源码
💻 TXT
字号:
OutputIter set_union(InputIter1 first, InputIter1 last,                     InputIter2 first2, InputIter2 last2,                     OutputIter result);// Returns a set that is a union of two sets.// Precondition: None.// Postcondition: A set s3 contains the union of sets s1 and s2.OutputIter set_difference(InputIter1 first, InputIter1 last,                          InputIter2 first2, InputIter2 last2,                          OutputIter result);// Returns a set that has elements that belong to the// first set, but not the second.// Precondition:  None.// Postcondition: A set s3 contains the difference of sets s1 and s2.OutputIter set_intersection(InputIter1 first, InputIter1 last,                            InputIter2 first2, InputIter2 last2,                            OutputIter result);// Returns a set that has elements that belong to both// input sets.// Precondition: None.// Postcondition: A set s3 contains the intersection of sets s1 and s2.bool includes(InputIter1 first, InputIter1 last,              InputIter2 first2, InputIter2 last2);// Tests whether set2 is a subset of set1.  // Precondition: None// Postcondition: Returns true if s2 is a subset of s1; otherwise// returns false

⌨️ 快捷键说明

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