Home | Develop | Download | Contact
example_matrix_set_map.cpp
1
27#include <cmath>
28#include <Pds/Ra>
29
30
31int main(void)
32{
33 Pds::Matrix A="1 2 1 2\n2 3 3 4\n-1 4 3 2";
34
35 std::map<int,unsigned int> Count=A.IntegerCount();
36 for (const auto& item : Count)
37 {
38 std::cout << item.first << " :: " << item.second << "\n";
39 }
40 std::cout << "\n";
41
42
43 std::set<int> Set=A.IntegerSet();
44 for (const auto& item : Set)
45 {
46 std::cout << item << "\t";
47 }
48 std::cout << "\n";
49
50 return 0;
51}
La clase tipo Pds::Matrix . Esta clase genera una matriz de Nlin lineas y Ncol columnas....
Definition: Matrix.hpp:96
std::set< int > IntegerSet(void) const
Set de elementos enteros.
std::map< int, unsigned int > IntegerCount(void) const
Cuenta la cantidad de elementos enteros.

Enlaces de interés

HomePage Bazaar Download Bug report Ayuda Developer Feed