powered by simpleCommunicator - 2.0.61     © 2026 Programmizd 02
Целевая тема:
Создать новую тему:
Автор:
Закрыть
Цитировать
Форумы / C++ [игнор отключен] [закрыт для гостей] / qSort of "List of Lists"
4 сообщений из 4, страница 1 из 1
qSort of "List of Lists"
    #32736586
cleoptera
Скрыть профиль Поместить в игнор-лист Сообщения автора в теме
Гость
я написал такую вот програмку. По идее она должна сортироват полиномы. Список полиномов хранится в list_of_lists1. Получается список из списков. Проблема в том что:

Код:
1.
 list_of_list1.sort(member_lexicographical_compare());

не подходит из-за специфики задания, А написать свою функцию у меня не получается.

Код:
1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.
12.
13.
14.
15.
16.
17.
18.
19.
20.
21.
22.
23.
24.
25.
26.
27.
28.
29.
30.
31.
32.
33.
34.
35.
36.
37.
38.
39.
40.
41.
42.
43.
44.
45.
46.
47.
48.
49.
50.
51.
52.
53.
54.
55.
56.
57.
58.
59.
60.
61.
62.
63.
64.
65.
66.
67.
68.
69.
70.
71.
72.
73.
74.
75.
76.
77.
78.
79.
80.
81.
82.
83.
84.
85.
86.
87.
88.
89.
90.
91.
92.
93.
94.
95.
96.
97.
98.
99.
100.
101.
102.
103.
104.
105.
106.
107.
108.
109.
110.
111.
112.
113.
114.
115.
116.
117.
118.
#include <iostream>
#include <time.h>      // time
#include <list>        // to create a list with STL templates
#include <algorithm>   // to use lexicographical_compare() function
#include <math.h>      // to use rand() function
#include <fstream>     // file I/O
#include <iterator>
 using namespace std; 



// declaration of List and "List of Lists" 
 typedef list<int> List;
 typedef list<List> ListOfList;
 
// functoid to for a sorting algorithm 
 struct member_lexicographical_compare{
     bool operator()(const List &lhs, const List &rhs){
         return lexicographical_compare(lhs.begin(), lhs.end(), rhs.begin(), rhs.end());
     }
 }; 
 
template <typename T>
void quicksort(T begin, T end) {
    if (begin != end) {
     T middle = partition (begin, end, bind2nd(member_lexicographical_compare(), *begin));
        sort (begin, middle);
        sort (max(begin + 1, middle), end);
    }
}

 


// a print list function
 void print_list(const List& list1, int id) {
     ostream_iterator<int> out(cout, " ");
     cout << "list " << id << ": ";
     copy(list1.begin(), list1.end(), out);
     cout << endl;
 }
 
// a random number[a,b] generation function
 int randInt(int a,int b){
     return a + rand() % (b - a + 1);
 }
// main function
 int main () {
     int poly_number, members_number, members_number_rand,members_range_min,members_range_max;
     ListOfList list_of_list1;
     
// some user defined data     
     srand(unsigned(time(NULL)));
     cout << "Polynomes number? (0 for random): " ;
     cin >> poly_number;
     if(poly_number==0) poly_number=randInt(1,100);
     cout << endl << "Members number? (0 for random): ";
     cin >> members_number;
     cout << endl << "Members range min, max?: ";
     cin >> members_range_min >> members_range_max;
     cout << endl << endl << "System of polynomes: ";
     cout << endl;

// a "list of lists" with list as container generation loop
     for(int i = 0; i < poly_number; ++i) {
         List list1;
/*
   a list generation loop. Fitst one with fixed polynome
   length second with random
*/
         if(members_number!=0){
             for(int j = 0; j < members_number; ++j) {
                 list1.push_back(randInt(members_range_min,members_range_max));
             }
         }else{
// this one fills not used members with zero value
             members_number_rand = randInt(1,10);
             for(int b =  members_number_rand; b < 10; ++b) {
                 list1.push_back(0);
             }
             for(int j = 0; j < members_number_rand; ++j) {
                 list1.push_back(randInt(members_range_min,members_range_max));
             }

         }
/*
   this part prints a polynome(list) and push it to the system of polynomes(list
   of lists)
*/
         print_list(list1, i+1);
         list_of_list1.push_back(list1);
     }


    cout << endl;

/* 
   this thing sorts list_of_list1 relying on member_lexicographical_compare()
   functoid(compare method). C++ uses qsort sorting wich was modifyed to compare
   lists
*/
/*
   ne podxodit
   list_of_list1.sort(member_lexicographical_compare());
*/
    quicksort (list_of_list1.begin(), list_of_list1.end());

// Printing out sorted list    
    ListOfList::iterator it = list_of_list1.begin();
    for(int j = 1; it != list_of_list1.end(); ++it, ++j) {
        const List& list1 = *it;
        print_list(list1, j);
    }
     
int i;
cin >> i;
     return 0;
 }



functor для сравнения списков:
Код:
1.
member_lexicographical_compare()


При компиляции выдаёт такие ошибки:
Код:
1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.
12.
13.
14.
15.
16.
17.
18.
19.
20.
21.
22.
23.
24.
25.
26.
27.
28.
29.
30.
31.
32.
33.
34.
35.
36.
37.
38.
39.
40.
41.
42.
43.
44.
45.
46.
47.
48.
49.
50.
51.
52.
53.
54.
55.
56.
57.
58.
59.
60.
61.
62.
63.
64.
65.
66.
67.
68.
69.
70.
71.
72.
73.
74.
75.
76.
77.
78.
79.
80.
81.
82.
83.
84.
85.
86.
87.
88.
89.
90.
91.
92.
93.
94.
95.
96.
97.
98.
99.
100.
101.
U:/programs/cpp/POLYN~JQ.CPP: In instantiation of `std::binder2nd<member_lexicographical_compare>':
U:/programs/cpp/POLYN~JQ.CPP:27:   instantiated from `void quicksort(T, T) [with T = std::_List_iterator<List, List&, List*>]'
U:/programs/cpp/POLYN~JQ.CPP:107:   instantiated from here
U:/programs/cpp/POLYN~JQ.CPP:27: no type named `first_argument_type' in `struct 
   member_lexicographical_compare'

C:/Program Files/Dev-Cpp/include/c++/bits/stl_function.h:389: no type named `
   second_argument_type' in `struct member_lexicographical_compare'

C:/Program Files/Dev-Cpp/include/c++/bits/stl_function.h:393: no type named `
   second_argument_type' in `struct member_lexicographical_compare'

C:/Program Files/Dev-Cpp/include/c++/bits/stl_function.h:395: no type named `
   result_type' in `struct member_lexicographical_compare'

C:/Program Files/Dev-Cpp/include/c++/bits/stl_function.h:401: no type named `
   result_type' in `struct member_lexicographical_compare'

U:/programs/cpp/POLYN~JQ.CPP: In function `void quicksort(T, T) [with T = 
   std::_List_iterator<List, List&, List*>]':
U:/programs/cpp/POLYN~JQ.CPP:107:   instantiated from here
U:/programs/cpp/POLYN~JQ.CPP:29: no match for `std::_List_iterator<List, List&, 
   List*>& + int' operator

C:/Program Files/Dev-Cpp/include/c++/bits/stl_function.h: In function 
   `std::binder2nd<_Operation> std::bind2nd(const _Operation&, const _Tp&) 
   [with _Operation = member_lexicographical_compare, _Tp = std::list<int, 
   std::allocator<int> >]':
U:/programs/cpp/POLYN~JQ.CPP:27:   instantiated from `void quicksort(T, T) [with T = std::_List_iterator<List, List&, List*>]'
U:/programs/cpp/POLYN~JQ.CPP:107:   instantiated from here
C:/Program Files/Dev-Cpp/include/c++/bits/stl_function.h:412: no type named `
   second_argument_type' in `struct member_lexicographical_compare'

C:/Program Files/Dev-Cpp/include/c++/bits/stl_function.h:413: no type named `
   second_argument_type' in `struct member_lexicographical_compare'

C:/Program Files/Dev-Cpp/include/c++/bits/stl_algo.h: In function `void 
   std::sort(_RandomAccessIter, _RandomAccessIter) [with _RandomAccessIter = 
   std::_List_iterator<List, List&, List*>]':
U:/programs/cpp/POLYN~JQ.CPP:28:   instantiated from `void quicksort(T, T) [with T = std::_List_iterator<List, List&, List*>]'
U:/programs/cpp/POLYN~JQ.CPP:107:   instantiated from here
C:/Program Files/Dev-Cpp/include/c++/bits/stl_algo.h:2178: no match for `
   std::_List_iterator<List, List&, List*>& - std::_List_iterator<List, List&, 

   List*>&' operator

C:/Program Files/Dev-Cpp/include/c++/bits/stl_algo.h: In function 
   `_BidirectionalIter std::__partition(_BidirectionalIter, _BidirectionalIter, 
   _Predicate, std::bidirectional_iterator_tag) [with _BidirectionalIter = 
   std::_List_iterator<List, List&, List*>, _Predicate = 
   std::binder2nd<member_lexicographical_compare>]':
C:/Program Files/Dev-Cpp/include/c++/bits/stl_algo.h:1758:   instantiated from `_ForwardIter std::partition(_ForwardIter, _ForwardIter, _Predicate) [with _ForwardIter = std::_List_iterator<List, List&, List*>, _Predicate = std::binder2nd<member_lexicographical_compare>]'
U:/programs/cpp/POLYN~JQ.CPP:27:   instantiated from `void quicksort(T, T) [with T = std::_List_iterator<List, List&, List*>]'
U:/programs/cpp/POLYN~JQ.CPP:107:   instantiated from here
C:/Program Files/Dev-Cpp/include/c++/bits/stl_algo.h:1717: no match for call to 
   `(std::binder2nd<member_lexicographical_compare>) (std::list<int, 
   std::allocator<int> >&)'

C:/Program Files/Dev-Cpp/include/c++/bits/stl_algo.h:1758:   instantiated from `_ForwardIter std::partition(_ForwardIter, _ForwardIter, _Predicate) [with _ForwardIter = std::_List_iterator<List, List&, List*>, _Predicate = std::binder2nd<member_lexicographical_compare>]'
U:/programs/cpp/POLYN~JQ.CPP:27:   instantiated from `void quicksort(T, T) [with T = std::_List_iterator<List, List&, List*>]'
U:/programs/cpp/POLYN~JQ.CPP:107:   instantiated from here
C:/Program Files/Dev-Cpp/include/c++/bits/stl_algo.h:1725: no match for call to 
   `(std::binder2nd<member_lexicographical_compare>) (std::list<int, 
   std::allocator<int> >&)'

C:/Program Files/Dev-Cpp/include/c++/bits/stl_algo.h: In function `void 
   std::__final_insertion_sort(_RandomAccessIter, _RandomAccessIter) [with 
   _RandomAccessIter = std::_List_iterator<List, List&, List*>]':
C:/Program Files/Dev-Cpp/include/c++/bits/stl_algo.h:2179:   instantiated from `void std::sort(_RandomAccessIter, _RandomAccessIter) [with _RandomAccessIter = std::_List_iterator<List, List&, List*>]'
U:/programs/cpp/POLYN~JQ.CPP:28:   instantiated from `void quicksort(T, T) [with T = std::_List_iterator<List, List&, List*>]'
U:/programs/cpp/POLYN~JQ.CPP:107:   instantiated from here

C:/Program Files/Dev-Cpp/include/c++/bits/stl_algo.h:2056: no match for `
   std::_List_iterator<List, List&, List*>& - std::_List_iterator<List, List&, 
   List*>&' operator

C:/Program Files/Dev-Cpp/include/c++/bits/stl_algo.h:2057: no match for `
   std::_List_iterator<List, List&, List*>& + std::<anonymous enum>' operator

C:/Program Files/Dev-Cpp/include/c++/bits/stl_algo.h:2058: no match for `
   std::_List_iterator<List, List&, List*>& + std::<anonymous enum>' operator

C:/Program Files/Dev-Cpp/include/c++/bits/stl_algo.h: In function `void 
   std::__insertion_sort(_RandomAccessIter, _RandomAccessIter) [with 
   _RandomAccessIter = std::_List_iterator<List, List&, List*>]':
C:/Program Files/Dev-Cpp/include/c++/bits/stl_algo.h:2061:   instantiated from `void std::__final_insertion_sort(_RandomAccessIter, _RandomAccessIter) [with _RandomAccessIter = std::_List_iterator<List, List&, List*>]'

C:/Program Files/Dev-Cpp/include/c++/bits/stl_algo.h:2179:   instantiated from `void std::sort(_RandomAccessIter, _RandomAccessIter) [with _RandomAccessIter = std::_List_iterator<List, List&, List*>]'
U:/programs/cpp/POLYN~JQ.CPP:28:   instantiated from `void quicksort(T, T) [with T = std::_List_iterator<List, List&, List*>]'
U:/programs/cpp/POLYN~JQ.CPP:107:   instantiated from here
C:/Program Files/Dev-Cpp/include/c++/bits/stl_algo.h:1980: no match for `
   std::_List_iterator<List, List&, List*>& + int' operator

C:/Program Files/Dev-Cpp/include/c++/bits/stl_algo.h:2061:   instantiated from `void std::__final_insertion_sort(_RandomAccessIter, _RandomAccessIter) [with _RandomAccessIter = std::_List_iterator<List, List&, List*>]'
C:/Program Files/Dev-Cpp/include/c++/bits/stl_algo.h:2179:   instantiated from `void std::sort(_RandomAccessIter, _RandomAccessIter) [with _RandomAccessIter = std::_List_iterator<List, List&, List*>]'
U:/programs/cpp/POLYN~JQ.CPP:28:   instantiated from `void quicksort(T, T) [with T = std::_List_iterator<List, List&, List*>]'
U:/programs/cpp/POLYN~JQ.CPP:107:   instantiated from here
C:/Program Files/Dev-Cpp/include/c++/bits/stl_algo.h:1984: no match for `
   std::_List_iterator<List, List&, List*>& + int' operator

Execution terminated


причом пока я не обрашаюсь к функции quicksort ошибок нет.

P.s.
Кто нибудь может подсказать как заменить эту функцию алгоритмом :
Код:
1.
partition (begin, end, bind2nd(member_lexicographical_compare(), *begin));


Зарание спасибо
...
Рейтинг: 0 / 0
qSort of "List of Lists"
    #32736594
cleoptera
Скрыть профиль Поместить в игнор-лист Сообщения автора в теме
Гость
Не те тэги

я написал такую вот програмку. По идее она должна сортироват полиномы.
Список полиномов хранится в list_of_lists1. Получается список из списков. Проблема в том что:


Код: plaintext
list_of_list1.sort(member_lexicographical_compare());

не подходит из-за специфики задания, А написать свою функцию у меня не получается.

Код: plaintext
1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.
12.
13.
14.
15.
16.
17.
18.
19.
20.
21.
22.
23.
24.
25.
26.
27.
28.
29.
30.
31.
32.
33.
34.
35.
36.
37.
38.
39.
40.
41.
42.
43.
44.
45.
46.
47.
48.
49.
50.
51.
52.
53.
54.
55.
56.
57.
58.
59.
60.
61.
62.
63.
64.
65.
66.
67.
68.
69.
70.
71.
72.
73.
74.
75.
76.
77.
78.
79.
80.
81.
82.
83.
84.
85.
86.
87.
88.
89.
90.
91.
92.
93.
94.
95.
96.
97.
98.
99.
100.
101.
102.
103.
104.
105.
106.
107.
108.
109.
110.
111.
112.
113.
114.
115.
116.
117.
#include <iostream>
#include <time.h>  // time 
#include <list>  // to create a list with STL templates 
#include <algorithm>  // to use lexicographical_compare() function 
#include <math.h>  // to use rand() function 
#include <fstream>  // file I/O 
#include <iterator>
using namespace std; 



 // declaration of List and "List of Lists"  
typedef list<int> List;
typedef list<List> ListOfList;

 // functoid to for a sorting algorithm  
struct member_lexicographical_compare{
bool operator()(const List &lhs, const List &rhs){
return lexicographical_compare(lhs.begin(), lhs.end(), rhs.begin(), rhs.end());
}
}; 

template <typename T>
void quicksort(T begin, T end) {
if (begin != end) {
T middle = partition (begin, end, bind2nd(member_lexicographical_compare(), *begin));
sort (begin, middle);
sort (max(begin +  1 , middle), end);
}
}




 // a print list function 
void print_list(const List& list1, int id) {
ostream_iterator<int> out(cout, " ");
cout << "list " << id << ": ";
copy(list1.begin(), list1.end(), out);
cout << endl;
}

 // a random number[a,b] generation function 
int randInt(int a,int b){
return a + rand() % (b - a +  1 );
}
 // main function 
int main () {
int poly_number, members_number, members_number_rand,members_range_min,members_range_max;
ListOfList list_of_list1;

 // some user defined data  
srand(unsigned(time(NULL)));
cout << "Polynomes number? (0 for random): " ;
cin >> poly_number;
if(poly_number== 0 ) poly_number=randInt( 1 , 100 );
cout << endl << "Members number? (0 for random): ";
cin >> members_number;
cout << endl << "Members range min, max?: ";
cin >> members_range_min >> members_range_max;
cout << endl << endl << "System of polynomes: ";
cout << endl;

 // a "list of lists" with list as container generation loop 
for(int i =  0 ; i < poly_number; ++i) {
List list1;
 /*
a list generation loop. Fitst one with fixed polynome
length second with random
*/ 
if(members_number!= 0 ){
for(int j =  0 ; j < members_number; ++j) {
list1.push_back(randInt(members_range_min,members_range_max));
}
}else{
 // this one fills not used members with zero value 
members_number_rand = randInt( 1 , 10 );
for(int b = members_number_rand; b <  10 ; ++b) {
list1.push_back( 0 );
}
for(int j =  0 ; j < members_number_rand; ++j) {
list1.push_back(randInt(members_range_min,members_range_max));
}

}
 /*
this part prints a polynome(list) and push it to the system of polynomes(list
of lists)
*/ 
print_list(list1, i+ 1 );
list_of_list1.push_back(list1);
}


cout << endl;

 /* 
this thing sorts list_of_list1 relying on member_lexicographical_compare()
functoid(compare method). C++ uses qsort sorting wich was modifyed to compare
lists
*/ 
 /*
ne podxodit
list_of_list1.sort(member_lexicographical_compare());
*/ 
quicksort (list_of_list1.begin(), list_of_list1.end());

 // Printing out sorted list  
ListOfList::iterator it = list_of_list1.begin();
for(int j =  1 ; it != list_of_list1.end(); ++it, ++j) {
const List& list1 = *it;
print_list(list1, j);
}

int i;
cin >> i;
return  0 ;
}


functor для сравнения списков:

Код: plaintext
member_lexicographical_compare()


При компиляции выдаёт такие ошибки:
Код: plaintext
1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.
12.
13.
14.
15.
16.
17.
18.
19.
20.
21.
22.
23.
24.
25.
26.
27.
28.
29.
30.
31.
32.
33.
34.
35.
36.
37.
38.
39.
40.
41.
42.
43.
44.
45.
46.
47.
48.
49.
50.
51.
52.
53.
54.
55.
56.
57.
58.
59.
60.
61.
62.
63.
64.
65.
66.
67.
68.
69.
70.
71.
72.
73.
74.
75.
76.
77.
78.
79.
80.
81.
82.
83.
84.
85.
86.
87.
88.
89.
90.
91.
92.
93.
94.
95.
96.
97.
98.
99.
100.
U:/programs/cpp/POLYN~JQ.CPP: In instantiation of `std::binder2nd<member_lexicographical_compare>':
U:/programs/cpp/POLYN~JQ.CPP:27: instantiated from `void quicksort(T, T) [with T = std::_List_iterator<List, List&, List*>]'
U:/programs/cpp/POLYN~JQ.CPP: 107 : instantiated from here
U:/programs/cpp/POLYN~JQ.CPP: 27 : no type named `first_argument_type' in `struct 
member_lexicographical_compare'

C:/Program Files/Dev-Cpp/include/c++/bits/stl_function.h: 389 : no type named `
second_argument_type' in `struct member_lexicographical_compare'

C:/Program Files/Dev-Cpp/include/c++/bits/stl_function.h: 393 : no type named `
second_argument_type' in `struct member_lexicographical_compare'

C:/Program Files/Dev-Cpp/include/c++/bits/stl_function.h: 395 : no type named `
result_type' in `struct member_lexicographical_compare'

C:/Program Files/Dev-Cpp/include/c++/bits/stl_function.h: 401 : no type named `
result_type' in `struct member_lexicographical_compare'

U:/programs/cpp/POLYN~JQ.CPP: In function `void quicksort(T, T) [with T = 
std::_List_iterator<List, List&, List*>]':
U:/programs/cpp/POLYN~JQ.CPP:107: instantiated from here
U:/programs/cpp/POLYN~JQ.CPP:29: no match for `std::_List_iterator<List, List&, 
List*>& + int' operator

C:/Program Files/Dev-Cpp/include/c++/bits/stl_function.h: In function 
`std::binder2nd<_Operation> std::bind2nd(const _Operation&, const _Tp&) 
[with _Operation = member_lexicographical_compare, _Tp = std::list<int, 
std::allocator<int> >]':
U:/programs/cpp/POLYN~JQ.CPP:27: instantiated from `void quicksort(T, T) [with T = std::_List_iterator<List, List&, List*>]'
U:/programs/cpp/POLYN~JQ.CPP: 107 : instantiated from here
C:/Program Files/Dev-Cpp/include/c++/bits/stl_function.h: 412 : no type named `
second_argument_type' in `struct member_lexicographical_compare'

C:/Program Files/Dev-Cpp/include/c++/bits/stl_function.h: 413 : no type named `
second_argument_type' in `struct member_lexicographical_compare'

C:/Program Files/Dev-Cpp/include/c++/bits/stl_algo.h: In function `void 
std::sort(_RandomAccessIter, _RandomAccessIter) [with _RandomAccessIter = 
std::_List_iterator<List, List&, List*>]':
U:/programs/cpp/POLYN~JQ.CPP:28: instantiated from `void quicksort(T, T) [with T = std::_List_iterator<List, List&, List*>]'
U:/programs/cpp/POLYN~JQ.CPP: 107 : instantiated from here
C:/Program Files/Dev-Cpp/include/c++/bits/stl_algo.h: 2178 : no match for `
std::_List_iterator<List, List&, List*>& - std::_List_iterator<List, List&, 

List*>&' operator

C:/Program Files/Dev-Cpp/include/c++/bits/stl_algo.h: In function 
`_BidirectionalIter std::__partition(_BidirectionalIter, _BidirectionalIter, 
_Predicate, std::bidirectional_iterator_tag) [with _BidirectionalIter = 
std::_List_iterator<List, List&, List*>, _Predicate = 
std::binder2nd<member_lexicographical_compare>]':
C:/Program Files/Dev-Cpp/include/c++/bits/stl_algo.h: 1758 : instantiated from `_ForwardIter std::partition(_ForwardIter, _ForwardIter, _Predicate) [with _ForwardIter = std::_List_iterator<List, List&, List*>, _Predicate = std::binder2nd<member_lexicographical_compare>]'
U:/programs/cpp/POLYN~JQ.CPP:27: instantiated from `void quicksort(T, T) [with T = std::_List_iterator<List, List&, List*>]'
U:/programs/cpp/POLYN~JQ.CPP: 107 : instantiated from here
C:/Program Files/Dev-Cpp/include/c++/bits/stl_algo.h: 1717 : no match for call to 
`(std::binder2nd<member_lexicographical_compare>) (std::list<int, 
std::allocator<int> >&)'

C:/Program Files/Dev-Cpp/include/c++/bits/stl_algo.h:1758: instantiated from `_ForwardIter std::partition(_ForwardIter, _ForwardIter, _Predicate) [with _ForwardIter = std::_List_iterator<List, List&, List*>, _Predicate = std::binder2nd<member_lexicographical_compare>]'
U:/programs/cpp/POLYN~JQ.CPP: 27 : instantiated from `void quicksort(T, T) [with T = std::_List_iterator<List, List&, List*>]'
U:/programs/cpp/POLYN~JQ.CPP:107: instantiated from here
C:/Program Files/Dev-Cpp/include/c++/bits/stl_algo.h:1725: no match for call to 
`(std::binder2nd<member_lexicographical_compare>) (std::list<int, 
std::allocator<int> >&)'

C:/Program Files/Dev-Cpp/include/c++/bits/stl_algo.h: In function `void 
std::__final_insertion_sort(_RandomAccessIter, _RandomAccessIter) [with 
_RandomAccessIter = std::_List_iterator<List, List&, List*>]':
C:/Program Files/Dev-Cpp/include/c++/bits/stl_algo.h:2179: instantiated from `void std::sort(_RandomAccessIter, _RandomAccessIter) [with _RandomAccessIter = std::_List_iterator<List, List&, List*>]'
U:/programs/cpp/POLYN~JQ.CPP: 28 : instantiated from `void quicksort(T, T) [with T = std::_List_iterator<List, List&, List*>]'
U:/programs/cpp/POLYN~JQ.CPP:107: instantiated from here

C:/Program Files/Dev-Cpp/include/c++/bits/stl_algo.h:2056: no match for `
std::_List_iterator<List, List&, List*>& - std::_List_iterator<List, List&, 
List*>&' operator

C:/Program Files/Dev-Cpp/include/c++/bits/stl_algo.h: 2057 : no match for `
std::_List_iterator<List, List&, List*>& + std::<anonymous enum>' operator

C:/Program Files/Dev-Cpp/include/c++/bits/stl_algo.h:2058: no match for `
std::_List_iterator<List, List&, List*>& + std::<anonymous enum>' operator

C:/Program Files/Dev-Cpp/include/c++/bits/stl_algo.h: In function `void 
std::__insertion_sort(_RandomAccessIter, _RandomAccessIter) [with 
_RandomAccessIter = std::_List_iterator<List, List&, List*>]':
C:/Program Files/Dev-Cpp/include/c++/bits/stl_algo.h:2061: instantiated from `void std::__final_insertion_sort(_RandomAccessIter, _RandomAccessIter) [with _RandomAccessIter = std::_List_iterator<List, List&, List*>]'

C:/Program Files/Dev-Cpp/include/c++/bits/stl_algo.h: 2179 : instantiated from `void std::sort(_RandomAccessIter, _RandomAccessIter) [with _RandomAccessIter = std::_List_iterator<List, List&, List*>]'
U:/programs/cpp/POLYN~JQ.CPP:28: instantiated from `void quicksort(T, T) [with T = std::_List_iterator<List, List&, List*>]'
U:/programs/cpp/POLYN~JQ.CPP: 107 : instantiated from here
C:/Program Files/Dev-Cpp/include/c++/bits/stl_algo.h: 1980 : no match for `
std::_List_iterator<List, List&, List*>& + int' operator

C:/Program Files/Dev-Cpp/include/c++/bits/stl_algo.h:2061: instantiated from `void std::__final_insertion_sort(_RandomAccessIter, _RandomAccessIter) [with _RandomAccessIter = std::_List_iterator<List, List&, List*>]'
C:/Program Files/Dev-Cpp/include/c++/bits/stl_algo.h: 2179 : instantiated from `void std::sort(_RandomAccessIter, _RandomAccessIter) [with _RandomAccessIter = std::_List_iterator<List, List&, List*>]'
U:/programs/cpp/POLYN~JQ.CPP:28: instantiated from `void quicksort(T, T) [with T = std::_List_iterator<List, List&, List*>]'
U:/programs/cpp/POLYN~JQ.CPP: 107 : instantiated from here
C:/Program Files/Dev-Cpp/include/c++/bits/stl_algo.h: 1984 : no match for `
std::_List_iterator<List, List&, List*>& + int' operator

Execution terminated

причом пока я не обрашаюсь к функции quicksort ошибок нет.

P.s.
Кто нибудь может подсказать как заменить эту функцию алгоритмом :

Код: plaintext
partition (begin, end, bind2nd(member_lexicographical_compare(), *begin));
...
Рейтинг: 0 / 0
qSort of "List of Lists"
    #32736718
Siebentearbeit
Скрыть профиль Поместить в игнор-лист Сообщения автора в теме
Гость
subj ^
Вспоминается одна история:

Приходят как-то работники издательства на работу утром...
Смотрят в факсе написано: "Здрасте, я писатель, но меня никто не хочет издавать, я вам посылаю свой рассказ, может вы издадите... " .... и вся бумага из факса вымотана на пол...
...
Рейтинг: 0 / 0
qSort of "List of Lists"
    #32737226
cleoptera
Скрыть профиль Поместить в игнор-лист Сообщения автора в теме
Гость
Ну если это к тому что никто мне еще не ответил на вопрос и я пишу в SQL ру, то так и есть. А текста так может и не надо было. Проблема только в сортировке
...
Рейтинг: 0 / 0
4 сообщений из 4, страница 1 из 1
Форумы / C++ [игнор отключен] [закрыт для гостей] / qSort of "List of Lists"
Найденые пользователи ...
Разблокировать пользователей ...
Читали форум (0):
Пользователи онлайн (0):
x
x
Закрыть


Просмотр
0 / 0
Close
Debug Console [Select Text]