List C++

#include 
#include 
#include 
#include 
using namespace std;
int main( )
{
   short v[] = { 1, 2, 3, 4, 5, 6 };
   vector v1( v,v + sizeof( v ) / sizeof( v[0] ) );
   list l( v1.begin(), v1.end() );
   
   if( v1.size() == l.size() && equal( v1.begin(), v1.end(), l.begin() ) )
      cout << "The vector and list are equal" << endl;
   else
      cout << "The vector and list are not equal" << endl;
}