Namensräume
Varianten
Aktionen

cpp/algorithm/includes: Unterschied zwischen den Versionen

Aus cppreference.com
< cpp‎ | algorithm
(Translated from the English version using Google Translate)
K (Fix previous edit)
 
(3 dazwischenliegende Versionen von 2 Benutzern werden nicht angezeigt)
Zeile 2: Zeile 2:
 
{{cpp/title|includes}}
 
{{cpp/title|includes}}
 
{{cpp/algorithm/navbar}}
 
{{cpp/algorithm/navbar}}
{{ddcl list begin}}
+
{{begin}}
{{ddcl list header | algorithm}}
+
{{header | algorithm}}
{{ddcl list item | num=1 |
+
{{| num=1 |
 
template< class InputIt1, class InputIt2 >
 
template< class InputIt1, class InputIt2 >
 
bool includes( InputIt1 first1, InputIt1 last1,
 
bool includes( InputIt1 first1, InputIt1 last1,
 
               InputIt2 first2, InputIt2 last2 );
 
               InputIt2 first2, InputIt2 last2 );
 
}}
 
}}
{{ddcl list item | num=2 |
+
{{| num=2 |
 
template< class InputIt1, class InputIt2 >
 
template< class InputIt1, class InputIt2 >
 
bool includes( InputIt1 first1, InputIt1 last1,
 
bool includes( InputIt1 first1, InputIt1 last1,
 
               InputIt2 first2, InputIt2 last2, Compare comp );
 
               InputIt2 first2, InputIt2 last2, Compare comp );
 
}}
 
}}
{{ddcl list end}}
+
{{end}}
  
 
{{tr|Versandkosten {{c|true}} wenn jedes Element aus der sortierten Bereich {{tt|[first2, last2)}} wird innerhalb der sortierten Bereich {{tt|[first, last)}} gefunden. Gibt auch {{c|true}} wenn {{tt|[first2, last2)}} ist leer . |Returns {{c|true}} if every element from the sorted range {{tt|[first2, last2)}} is found within the sorted range {{tt|[first, last)}}. Also returns {{c|true}} if {{tt|[first2, last2)}} is empty. }}
 
{{tr|Versandkosten {{c|true}} wenn jedes Element aus der sortierten Bereich {{tt|[first2, last2)}} wird innerhalb der sortierten Bereich {{tt|[first, last)}} gefunden. Gibt auch {{c|true}} wenn {{tt|[first2, last2)}} ist leer . |Returns {{c|true}} if every element from the sorted range {{tt|[first2, last2)}} is found within the sorted range {{tt|[first, last)}}. Also returns {{c|true}} if {{tt|[first2, last2)}} is empty. }}
Zeile 21: Zeile 21:
  
 
===Parameter===
 
===Parameter===
{{param list begin}}
+
{{begin}}
{{param list item | first1, last1 |{{tr| die sortierte Palette von Elementen zu untersuchen| the sorted range of elements to examine}}}}
+
{{| first1, last1 |{{tr| die sortierte Palette von Elementen zu untersuchen| the sorted range of elements to examine}}}}
{{param list item | first2, last2 |{{tr| die sortierte Palette von Elementen zu suchen| the sorted range of elements to search for}}}}
+
{{| first2, last2 |{{tr| die sortierte Palette von Elementen zu suchen| the sorted range of elements to search for}}}}
{{param list cmp | comp | p1=InputIt}}  
+
{{cmp | comp | p1=InputIt}}  
{{param list hreq}}
+
{{hreq}}
{{param list req concept | InputIt | InputIterator}}
+
{{req concept | InputIt | InputIterator}}
{{param list end}}
+
{{end}}
  
 
===Rückgabewert===
 
===Rückgabewert===
Zeile 117: Zeile 117:
  
 
===Siehe auch===
 
===Siehe auch===
{{dcl list begin}}
+
{{begin}}
{{dcl list template | cpp/algorithm/dcl list set_difference}}
+
{{| cpp/algorithm/set_difference}}
{{dcl list template | cpp/algorithm/dcl list search}}
+
{{| cpp/algorithm/search}}
{{dcl list end}}
+
{{end}}
  
 +
 +
 +
 +
 +
 +
 
[[ru:cpp/algorithm/includes]]
 
[[ru:cpp/algorithm/includes]]
 +

Aktuelle Version vom 1. Juli 2013, 19:00 Uhr

 
 
Algorithm Bibliothek
Funktionen
Original:
Functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Nicht-modifizierende Sequenz Operationen
Original:
Non-modifying sequence operations
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Modifizierende Sequenz Operationen
Original:
Modifying sequence operations
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Partitionierungsoperationen
Original:
Partitioning operations
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Sortierung Operationen (auf sortierten Bereiche)
Original:
Sorting operations (on sorted ranges)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Binary Suchaktionen (auf sortierten Bereiche)
Original:
Binary search operations (on sorted ranges)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Set-Operationen (auf sortierten Bereiche)
Original:
Set operations (on sorted ranges)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
merge
inplace_merge
includes
Heap-Operationen
Original:
Heap operations
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Minimum / Maximum Operationen
Original:
Minimum/maximum operations
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Numerische Operationen
Original:
Numeric operations
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.