CAtlList::SwapElements

Chiamare questo metodo per scambiare gli elementi nell'elenco.

void SwapElements(
   POSITION pos1,
   POSITION pos2 
) throw( );

Parametri

  • pos1
    Il primo valore della posizione.

  • pos2
    Il secondo valore della posizione.

Note

Scambia elementi in due percorsi specificati.Nelle build di debug, un errore di asserzione si verificherà se i valori della posizione è uguale a NULL.

Esempio

// Define the integer list
CAtlList<int> myList;

// Populate the list
for (int i = 0; i < 100; i++)
{
   myList.AddHead(i);
}

// Order is: 99, 98, 97, 96...
ATLASSERT(myList.GetHead() == 99);
ATLASSERT(myList.GetTail() == 0);

// Perform a crude bubble sort
for (int j = 0; j < 100; j++)
{
   for(int i = 0; i < 99; i++)
   {
      if (myList.GetAt(myList.FindIndex(i)) > 
         myList.GetAt(myList.FindIndex(i+1)))
      {
         myList.SwapElements(myList.FindIndex(i), myList.FindIndex(i+1));
      }
   }
}

// Order is: 0, 1, 2, 3...
ATLASSERT(myList.GetHead() == 0);
ATLASSERT(myList.GetTail() == 99);   

Requisiti

Header: atlcoll.h

Vedere anche

Riferimenti

Classe di CAtlList

CAtlList::MoveToHead

CAtlList::MoveToTail