5 //XXX Pensado para andar con unsigned's (si anda con otra cosa es casualidad =)
7 template < typename T >
12 typedef T atomic_type;
13 enum sign_type { positive, negative };
14 typedef typename std::vector< T > chunk_type;
15 typedef typename chunk_type::size_type size_type;
16 typedef typename chunk_type::iterator iterator;
17 typedef typename chunk_type::const_iterator const_iterator;
19 // Constructores (después de construído, el chunk siempre tiene al menos
21 // Constructor default (1 'átomo con valor 0)
22 number(): chunk(1, 0) {}
23 // Constructor a partir de buffer (de 'átomos') y tamaño
24 // Copia cada elemento del buffer como un 'átomo' del chunk
25 // (el átomo menos significativo es el chunk[0] == buf[0])
26 number(atomic_type* buf, size_type len, sign_type sign = positive):
27 chunk(buf, buf + len), sign(sign)
29 // Constructor a partir de un buffer (de 'átomos') terminado en 0
30 // FIXME (en realidad está 'roto' este contructor porque no puedo
31 // inicializar números con un átomo == 0 en el medio)
32 number(atomic_type* buf, sign_type sign = positive): sign(sign)
33 { while (*buf) chunk.push_back(*(buf++)); fix_empty(); }
34 // Constructor a partir de un 'átomo' (lo asigna como único elemento del
36 number(atomic_type n, sign_type sign = positive):
37 chunk(1, n), sign(sign) {} // copia una vez n en el vector
38 // TODO constructor a partir de string.
41 number& operator++ () { carry(0); return *this; }
42 number& operator+= (const number& n);
43 // Devuelve referencia a 'átomo' i del chunk (no debería ser necesario
44 // si la multiplicación es un método de este objeto).
45 atomic_type& operator[] (size_type i) { return chunk[i]; }
47 // Iteradores (no deberían ser necesarios)
48 iterator begin() { return chunk.begin(); }
49 iterator end() { return chunk.end(); }
50 const_iterator begin() const { return chunk.begin(); }
51 const_iterator end() const { return chunk.end(); }
59 // Pone un chunk en 0 para que sea un invariante de representación que
60 // el chunk no sea vacío (siempre tenga la menos un elemento).
61 void fix_empty() { if (!chunk.size()) chunk.push_back(0); }
62 // Propaga carry a partir del 'átomo' i (suma 1 al 'átomo' i propagando
64 void carry(size_type i)
69 if (!chunk[i]) carry(i+1); // Overflow
71 else chunk.push_back(1);
75 template < typename T >
76 number< T >& number< T >::operator+= (const number< T >& n)
80 size_type fin = std::min(chunk.size(), n.chunk.size());
81 // "intersección" entre ambos chunks
82 // +-----+-----+------+------+
84 // +-----+-----+------+------+
85 // +-----+-----+------+
86 // | | | | <--- chunk de n
87 // +-----+-----+------+
89 // |------------------|
90 // Esto se procesa en este for
91 for (size_type i = ini; i < fin; ++i)
93 chunk[i] += n.chunk[i] + c;
94 if (chunk[i] || (!n.chunk[i] && !c)) c = 0; // OK
95 else c = 1; // Overflow
97 // si mi chunk es más grande que el del otro, sólo me queda
99 if (chunk.size() >= n.chunk.size())
101 if (c) carry(fin); // Propago carry
105 // +-----+-----+------+
107 // +-----+-----+------+
108 // +-----+-----+------+------+
109 // | | | | | <--- chunk de n
110 // +-----+-----+------+------+
113 // Esto se procesa en este for
114 // (suma los chunks de n propagando algún carry si lo había)
116 fin = n.chunk.size();
117 for (size_type i = ini; i < fin; ++i)
119 chunk.push_back(n.chunk[i] + c); // Agrego nuevo átomo
120 if (chunk[i] || !c) c = 0; // OK
121 else c = 1; // Overflow
123 // Si me queda algún carry colgado, hay que agregar un "átomo"
125 if (c) chunk.push_back(1); // Último carry
129 template < typename T >
130 number< T > operator+ (const number< T >& n1, const number< T >& n2)
132 number< T > tmp = n1;
137 template < typename T >
138 std::ostream& operator<< (std::ostream& os, const number< T >& n)
140 // FIXME sacar una salida bonita en ASCII =)
141 std::copy(n.begin(), n.end(), std::ostream_iterator< T >(os, " "));