C++listのインスタンスの詳細

1195 ワード

C++listのインスタンスの詳細
Source:

#include   
#include   
#include   
#include    
using namespace std;   
  
typedef list LISTINT;  //    list     LISTINT 
typedef list LISTCHAR; //    list     LISTCHAR 
int main(void) {    
  LISTINT listOne;  // LISTINT      listOne list     
  LISTINT::iterator i;  //  i         
  listOne.push_front (2); //    listOne        
  listOne.push_front (1);   
  listOne.push_back (3); //    listOne        
  listOne.push_back (4);    
    
  cout< 
 

Result:

 
[[email protected] c++]$ g++ -o list list.cpp 
[[email protected] c++]$ ./list 
listOne.begin()--- listOne.end():
1 2 3 4 
listOne.rbegin()---listOne.rend():
4 3 2 1 
Sum=10
listTwo.begin()---listTwo.end():
B A x y 
The maximum element in listTwo is: y


もし疑問があれば伝言を残してあるいは当駅のコミュニティに行って討論を交流して、読書に感謝して、みんなを助けることができることを望んで、みんなの当駅に対する支持に感謝します!