<blockquote>
<p>C 中的 compare 函數用於比較容器中元素的順序,傳回一個布林值:第一個元素大於第二個元素傳回 true,小於或等於時傳回 false。它需要兩個容器的起始和結束迭代器,以及一個比較函數對象,預設使用 < 運算符,也可以指定自訂比較函數。 </p></blockquote><p><img src="https://img.php.cn/upload/article/202405/01/2024050116271942696.jpg"/ alt="c++中compare用法" ></p><p><strong>C 中的compare 用法</strong></p><p>compare 函數是C 中<algorithm> 頭檔中提供的演算法,用於對容器中的元素進行比較。它比較兩個元素並傳回一個布林值:</p>
<ul>
<li>true:如果第一個元素大於第二個元素</li>
<li>false:如果第一個元素小於或等於第二個元素</li>
</ul>
<p><strong>語法</strong></p>
<div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:php;toolbar:false"><code class="cpp">template<class ForwardIterator, class Compare>
ForwardIterator compare(ForwardIterator first1, ForwardIterator last1, ForwardIterator first2, ForwardIterator last2, Compare comp);</code></pre><div class="contentsignin">登入後複製</div></div>
<p><strong></strong></p>
<ul>
<li>
<strong>#first1, last1:</strong>第一個容器的起始和結束迭代器。 </li>
<li>
<strong>first2, last2:</strong>第二個容器的起始和結束迭代器。 </li>
<li>
<strong>comp:</strong>比較函數對象,用於比較兩個元素。 </li>
</ul>
<p><strong>比較函數物件</strong></p>
<p>比較函數物件是一個函數對象,它接受兩個元素並傳回一個布林值,指示第一個元素是否大於第二個元素。預設情況下,此比較函數使用 <code><</code> 運算符,但也可以指定自訂比較函數。 </p><p><strong>用法</strong></p><p>compare 函數比較兩個容器中元素的順序。它會傳回一個迭代器,指向第一個容器中不等於第二個容器對應元素的元素。如果兩個容器相同,則傳回最後一個容器的結束迭代器。 </p><p><strong>範例</strong></p><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:php;toolbar:false"><code class="cpp">#include <iostream>
#include <algorithm>
int main() {
int arr1[] = {1, 3, 5, 7, 9};
int arr2[] = {2, 4, 6, 8, 10};
// 比较 arr1 和 arr2
auto it = std::compare(std::begin(arr1), std::end(arr1), std::begin(arr2), std::end(arr2));
// 打印不相同的元素
std::cout << "第一个不相同的元素: " << *it << std::endl;
return 0;
}</code></p>
<p>輸出:</p>
<pre class="brush:php;toolbar:false"><code>第一个不相同的元素: 2</code></pre><div class="contentsignin">登入後複製</div></div>
</blockquote>
以上是c++中compare用法的詳細內容。更多資訊請關注PHP中文網其他相關文章!