Sign in
or
Register
Courses
Textbook
Compiler
Contests
Topics
Courses
C++. Strutture dati dinamiche
Usando set
Module:
Usando set
Problem
3
/10
Usando il set con un comparatore
Theory
Click to read/hide
Utilizzo di
set
con un comparatore
Un esempio di un comparatore per creare un insieme ordinato in ordine decrescente.
struct cmp { operatore bool() ( int a, int b) const{ restituire un > B; } };
Utilizzo di un comparatore durante la creazione di un
set
.
impostare <int, cmp> S;
Problem
Completa
il programma con un comparatore per risolvere il seguente problema.
Dati
N
numeri naturali. Produci l'insieme ordinato in base alla somma delle cifre del numero.
Esempi
#
Input
Uscita
1
4
123 321 34 23
23 123 34
1000
ms
256 Mb
Rules for program design and list of errors in automatic problem checking
Teacher commentary