-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathnarray.h
1058 lines (940 loc) · 25.2 KB
/
narray.h
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#ifndef NARRAY_H
#define NARRAY_H
#include "nmatrix.h"
#include <mem.h>
#include <stdexcept>
#include <cstdlib>
#include <ctime>
#include <random>
template <typename NType> class NMatrix;
template <typename NType>
class NArray
{
public:
NArray();
NArray(NArray<NType> &obj);
NArray<NType>& operator=(NArray<NType>& obj);
NArray(int size);
NArray(int size, int length, int block);
~NArray();
NType& operator[](size_t pos);
const NType& operator[](size_t pos) const;
protected:
int length; //Длина массива
int size; //Размерность массива (выделено памяти)
int block; //Размер блока, на который выделяется память
NType* data; //Данные
bool lock; //Запрет на изменение размерности массива
bool extrn; //В массиве внешние данные
public:
void setBlock(int block);
int getBlock();
void setLength(int len);
int getLength();
void setSize(int size);
int getSize();
void setData(NType* dt);
NType* getData();
void setLock(bool bl);
bool getLock();
void setExtrn(bool bl);
bool getExtrn();
public:
typedef NType* iterator;
typedef const NType* const_iterator;
NType& at(size_t pos); //Возврат элемента с проверкой
NType& front(); //Первый элемент
NType& back(); //Последний элемент
NArray<NType>::iterator begin() {return this->data;}
NArray<NType>::iterator end() {return (this->data + this->length);}
NArray<NType>::const_iterator cbegin() const {return this->data;}
NArray<NType>::const_iterator cend() const {return (this->data + this->length);}
NArray<NType>::iterator rbegin() {return (this->data + this->length - 1);}
NArray<NType>::iterator rend() {return this->data;}
NArray<NType>::const_iterator crbegin() const {return (this->data + this->length - 1);}
NArray<NType>::const_iterator crend() const {return this->data;}
bool empty(); //Массив пустой?
void shrink_to_fit(); //Очистка неиспользуемой памяти
NArray<NType>::iterator insert(NArray<NType>::const_iterator pos, const NType& element); //Вставка элемента в позицию
NArray<NType>::iterator insert(NArray<NType>::const_iterator pos, size_t count, const NType& element); //Вставка элемента в позицию
NArray<NType>::iterator erase(NArray<NType>::const_iterator pos); //Удаление элемента из позиции
void swap(NArray<NType>& other); //Обмен элементами между массивами
void swap(int ind, int jnd); //Поменять элементы местами
static void srand(); //Инициализация генератора
static int random_index(int beg, int end);
int random_index(); //Случайный индекс элемента
void mix(); //Перемешивание массива
void mix(int beg, int end);
public:
void copyValue(NArray<NType>& obj); //Копирование значений
void destruct(); //Деструктор
void init(int length); //Инициализация
void init(int length, const NType& value); //Инициализация значением
void init_value(const NType& value); //Инициализация значением
void init_rand(std::default_random_engine& generator, const NType& valMin, const NType& valMax); //Инициализация случайными числами
void binary_shold(NType& value); //Применение порога
void clear(); //Очистка массива
void add(const NType& element, int pos, int count); //Вставка элемента в позицию
void add(const NType& element, int pos); //Вставка элемента в позицию
NType del(int pos); //Удаление элемента из позиции
void push(const NType& element); //Вставка элемента в конец
NType pop(); //Извлечение элемента с конца
void set(const NType& element, int pos); //Установка значения элемента
NType get(int pos); //Возврат элемента
void resize(int size); //Изменение размерности массива
void renew(); //Перевыделение памяти (все данные стираются)
void renew(int size); //Перевыделение памяти (все данные стираются)
void copyFields(NArray<NType>& obj); //Копирование полей
void memCopy(NType* src); //Копирование данных массива
void memCopy(NType* src, int shift, int len);
void memCopy(NType* dst, NType* src); //Копирование данных массива
void dataCopy(NType* src); //Поэлементное копирование
void dataCopy(NType* src, int shift, int len);
void dataCopy(NType* dst, NType* src); //Поэлементное копирование
void convertUInt(NArray<unsigned int>& dest); //Конвертация массива uint в элементы массива
NArray<unsigned int>& toUInt(NArray<unsigned int>& dest); //Конвертация элементов массива в uint
NType& endElement(); //Последний элемент
void doMask(bool* mask); //Обнуление элементов по маске
public:
NType sumElements(); //Сумма элементов
NType sumElements(int sift);
NType maxElements(); //Максимум
int maxArg();
NType minElements(); //Минимум
int minArg();
NArray<NType>& valsum(const NType& B);
NArray<NType>& sum(NArray<NType>& B);
NArray<NType>& sum(NArray<NType>& A, NArray<NType>& B);
NArray<NType>& valmul(const NType& B);
NArray<NType>& valsign();
NArray<NType>& valdiv(const NType& B);
NArray<NType>& mul(NArray<NType>& B);
NArray<NType>& mul(NArray<NType>& A, NArray<NType>& B);
NArray<NType>& div(NArray<NType>& B);
NArray<NType>& div(NArray<NType>& A, NArray<NType>& B);
NArray<NType>& prufdiv(NArray<NType>& B, const NType& val);
NArray<NType>& prufdiv(NArray<NType>& A, NArray<NType>& B, const NType& val);
NArray<NType>& mul(NMatrix<NType>& B, bool orient);
NArray<NType>& mul(NArray<NType>& A, NMatrix<NType>& B, bool orient);
NArray<NType>& mul(NMatrix<NType>& B, NArray<NType>& A, bool orient);
NArray<NType>& floor();
};
template <typename NType>
NArray<NType>::NArray()
{
this->data = nullptr;
this->length = 0;
this->size = 0;
this->block = 1;
this->lock = false;
this->extrn = false;
}
template <typename NType>
NArray<NType>::NArray(NArray<NType> &obj)
{
this->length = obj.getLength();
this->size = obj.getSize();
this->block = obj.getBlock();
this->extrn = false;
this->data = new NType[this->size];
NType* p = obj.getData();
if(p != nullptr) {this->dataCopy(p);}
//this->lock = obj.getLock();
}
template <typename NType>
NArray<NType>& NArray<NType>::operator=(NArray<NType>& obj)
{
this->length = obj.getLength();
this->block = obj.getBlock();
//this->extrn = false;
if(this->length > this->size)
{
this->renew(this->length + this->block);
}
NType* p = obj.getData();
if(p != nullptr) {this->dataCopy(p);}
//this->lock = obj.getLock();
return *this;
}
template <typename NType>
NArray<NType>::NArray(int size)
{
this->data = new NType[size];
this->length = 0;
this->size = size;
this->block = 1;
this->lock = false;
this->extrn = false;
}
template <typename NType>
NArray<NType>::NArray(int size, int length, int block)
{
this->data = new NType[size];
this->length = length;
this->size = size;
this->block = block;
this->lock = false;
this->extrn = false;
}
template <typename NType>
NArray<NType>::~NArray()
{
this->destruct();
}
template <typename NType>
NType& NArray<NType>::operator[](size_t pos)
{
return this->data[pos];
}
template <typename NType>
const NType& NArray<NType>::operator[](size_t pos) const
{
return this->data[pos];
}
template <typename NType>
void NArray<NType>::setBlock(int block)
{
this->block = block;
}
template <typename NType>
void NArray<NType>::setLength(int len)
{
this->length = len;
}
template <typename NType>
int NArray<NType>::getLength()
{
return this->length;
}
template <typename NType>
void NArray<NType>::setSize(int size)
{
this->size = size;
}
template <typename NType>
int NArray<NType>::getSize()
{
return this->size;
}
template <typename NType>
int NArray<NType>::getBlock()
{
return this->block;
}
template <typename NType>
void NArray<NType>::setData(NType* dt)
{
this->data = dt;
}
template <typename NType>
NType* NArray<NType>::getData()
{
return this->data;
}
template <typename NType>
void NArray<NType>::setLock(bool bl)
{
this->lock = bl;
}
template <typename NType>
bool NArray<NType>::getLock()
{
return this->lock;
}
template <typename NType>
void NArray<NType>::setExtrn(bool bl)
{
this->extrn = bl;
}
template <typename NType>
bool NArray<NType>::getExtrn()
{
return this->extrn;
}
template <typename NType>
NType& NArray<NType>::at(size_t pos)
{
if(pos >= (size_t)this->length) {throw std::out_of_range("NArray<NType>::at() : index is out of range");}
return this->data[pos];
}
template <typename NType>
NType& NArray<NType>::front()
{
return this->data[0];
}
template <typename NType>
NType& NArray<NType>::back()
{
return this->data[this->length-1];
}
template <typename NType>
bool NArray<NType>::empty()
{
return (this->length == 0);
}
template <typename NType>
void NArray<NType>::shrink_to_fit()
{
this->resize(this->length);
}
template <typename NType>
typename NArray<NType>::iterator NArray<NType>::insert(NArray<NType>::const_iterator pos, const NType& element)
{
if(this->length >= this->size)
{
this->resize(this->size + this->block);
}
for(NArray<NType>::iterator iter = this->end(); iter != pos; iter--)
{
*iter = *(iter-1);
}
*pos = element;
this->length++;
return pos;
}
template <typename NType>
typename NArray<NType>::iterator NArray<NType>::insert(NArray<NType>::const_iterator pos, size_t count, const NType& element)
{
if(this->length > this->size + count)
{
this->resize(this->size + (int(count/this->block) + 1) * this->block);
}
for(NArray<NType>::iterator iter = this->end() + count - 1; iter != pos + count - 1; iter--)
{
*iter = *(iter-count);
}
for(NArray<NType>::iterator iter = pos; iter != pos + count; iter++)
{
*iter = element;
}
this->length += count;
return pos;
}
template <typename NType>
typename NArray<NType>::iterator NArray<NType>::erase(NArray<NType>::const_iterator pos)
{
this->length--;
for(NArray<NType>::iterator iter = pos; iter != this->end(); iter++)
{
*iter = *(iter+1);
}
return pos;
}
template <typename NType>
void NArray<NType>::swap(NArray<NType>& other)
{
NType* tmpdt = other.getData();
other.setData(this->data);
this->data = tmpdt;
int tmpBlock = other.getBlock();
int tmpSize = other.getSize();
int tmpLen = other.getLength();
bool tmpLock = other.getLock();
bool tmpExtrn = other.getExtrn();
other.setBlock(this->block);
other.setSize(this->size);
other.setLock(this->lock);
other.setExtrn(this->extrn);
other.init(this->length);
this->block = tmpBlock;
this->size = tmpSize;
this->length = tmpLen;
this->lock = tmpLock;
this->extrn = tmpExtrn;
}
template <typename NType>
void NArray<NType>::swap(int ind, int jnd)
{
if(ind != jnd)
{
NType tmp = this->data[ind];
this->data[ind] = this->data[jnd];
this->data[jnd] = tmp;
}
}
template <typename NType>
void NArray<NType>::srand()
{
std::srand(unsigned(std::time(0)));
}
template <typename NType>
int NArray<NType>::random_index(int beg, int end)
{
return (std::rand() % (end - beg) + beg);
}
template <typename NType>
int NArray<NType>::random_index()
{
return (std::rand() % this->length);
}
template <typename NType>
void NArray<NType>::mix()
{
int ind, jnd;
//NArray<NType>::srand();
for(int k = 0; k <= this->length / 2; k++)
{
ind = this->random_index();
jnd = this->random_index();
this->swap(ind, jnd);
}
}
template <typename NType>
void NArray<NType>::mix(int beg, int end)
{
int ind, jnd;
//NArray<NType>::srand();
for(int k = 0; k <= (end - beg)/2; k++)
{
ind = NArray<NType>::random_index(beg, end);
jnd = NArray<NType>::random_index(beg, end);
this->swap(ind, jnd);
}
}
template <typename NType>
void NArray<NType>::copyValue(NArray<NType>& obj)
{
this->length = obj.getLength();
this->block = obj.getBlock();
//this->extrn = false;
if(this->length > this->size)
{
this->renew(this->length + this->block);
}
NType* p = obj.getData();
if(p != nullptr) {this->memCopy(p);}
//this->lock = obj.getLock();
}
template <typename NType>
void NArray<NType>::destruct()
{
if(this->data != nullptr && !this->extrn)
{
delete[] this->data;
this->data = nullptr;
}
}
template <typename NType>
void NArray<NType>::init(int length)
{
if(length > this->size)
{
this->resize(length);
}
this->length = length;
}
template <typename NType>
void NArray<NType>::init(int length, const NType& value)
{
if(length > this->size)
{
//this->resize(length);
this->renew(length);
}
this->length = length;
this->init_value(value);
}
template <typename NType>
void NArray<NType>::init_value(const NType& value)
{
for(int i = 0; i < length; i++)
{
data[i] = value;
}
}
template <typename NType>
void NArray<NType>::init_rand(std::default_random_engine& generator, const NType& valMin, const NType& valMax)
{
std::uniform_real_distribution<NType> distribution(valMin, valMax);
//NType koef = (valMax - valMin)/(NType)RAND_MAX;
for(int i = 0; i < length; i++)
{
//data[i] = koef * (NType)rand() + valMin;
data[i] = distribution(generator);
}
}
template <typename NType>
void NArray<NType>::binary_shold(NType& value)
{
this->valsum(1-value);
this->floor();
}
template <typename NType>
void NArray<NType>::clear()
{
this->length = 0;
}
template <typename NType>
void NArray<NType>::add(const NType& element, int pos, int count)
{
if(this->length > this->size + count)
{
this->resize(this->size + (int(count/this->block) + 1) * this->block);
}
for(int i = this->length + count - 1; i > pos + count - 1; i--)
{
this->data[i] = this->data[i-count];
}
for(int i = pos; i < pos + count; i++)
{
this->data[i] = element;
}
this->length += count;
}
template <typename NType>
void NArray<NType>::add(const NType& element, int pos)
{
if(this->length >= this->size)
{
this->resize(this->size + this->block);
}
for(int i = this->length; i > pos; i--)
{
this->data[i] = this->data[i-1];
}
this->data[pos] = element;
this->length++;
}
template <typename NType>
NType NArray<NType>::del(int pos)
{
this->length--;
NType result = this->data[pos];
for(int i = pos; i < this->length; i++)
{
this->data[i] = this->data[i+1];
}
return result;
}
template <typename NType>
void NArray<NType>::push(const NType& element)
{
if(this->length >= this->size)
{
this->resize(this->size + this->block);
}
this->data[this->length] = element;
this->length++;
}
template <typename NType>
NType NArray<NType>::pop()
{
this->length--;
return this->data[this->length];
}
template <typename NType>
void NArray<NType>::set(const NType& element, int pos)
{
this->data[pos] = element;
}
template <typename NType>
NType NArray<NType>::get(int pos)
{
return this->data[pos];
}
template <typename NType>
void NArray<NType>::resize(int size)
{
size = size > this->length ? size : this->length;
if(this->size != size)
{
if(this->lock || this->extrn) {throw std::out_of_range("NArray<NType>::resize() : lock size");}
NType* p = this->data;
this->data = new NType[size];
this->size = size;
if(p != nullptr)
{
this->dataCopy(p);
delete[] p;
}
}
}
template <typename NType>
void NArray<NType>::renew()
{
if(this->lock || this->extrn) {throw std::out_of_range("NArray<NType>::renew() : lock size");}
this->destruct();
this->data = new NType[this->size];
}
template <typename NType>
void NArray<NType>::renew(int size)
{
if(this->lock || this->extrn) {throw std::out_of_range("NArray<NType>::renew() : lock size");}
this->destruct();
this->data = new NType[size];
this->size = size;
}
template <typename NType>
void NArray<NType>::copyFields(NArray<NType>& obj)
{
this->destruct();
this->data = obj.getData();
this->extrn = true;
this->length = obj.getLength();
this->size = obj.getSize();
this->block = obj.getBlock();
this->lock = obj.getLock();
}
template <typename NType>
void NArray<NType>::memCopy(NType* src)
{
memcpy(this->data, src, this->length * sizeof(NType));
}
template <typename NType>
void NArray<NType>::memCopy(NType* src, int shift, int len)
{
memcpy(this->data + shift, src, len * sizeof(NType));
}
template <typename NType>
void NArray<NType>::memCopy(NType* dst, NType* src)
{
memcpy(dst, src, this->length * sizeof(NType));
}
template <typename NType>
void NArray<NType>::dataCopy(NType* src)
{
for(int i = 0; i < length; i++)
{
data[i] = src[i];
}
}
template <typename NType>
void NArray<NType>::dataCopy(NType* src, int shift, int len)
{
for(int i = 0; i < len; i++)
{
data[i + shift] = src[i];
}
}
template <typename NType>
void NArray<NType>::dataCopy(NType* dst, NType* src)
{
for(int i = 0; i < length; i++)
{
dst[i] = src[i];
}
}
template <typename NType>
void NArray<NType>::convertUInt(NArray<unsigned int>& dest)
{
this->clear();
for(int i = 0; i < dest.getLength(); i++)
{
this->push((NType)dest[i]);
}
}
template <typename NType>
NArray<unsigned int>& NArray<NType>::toUInt(NArray<unsigned int>& dest)
{
dest.clear();
for(int i = 0; i < this->length; i++)
{
dest.push((unsigned int)this->data[i]);
}
return dest;
}
template <typename NType>
NType& NArray<NType>::endElement()
{
return *(this->data + this->length - 1);
}
template <typename NType>
void NArray<NType>::doMask(bool* mask)
{
for(int i = 0; i < length; i++)
{
if(mask[i]) {data[i] = 0;}
}
}
template <typename NType>
NType NArray<NType>::sumElements()
{
NType total = 0;
for(int i = 0; i < length; i++)
{
total += data[i];
}
return total;
}
template <typename NType>
NType NArray<NType>::sumElements(int shift)
{
NType total = 0;
for(int i = shift; i < length; i++)
{
total += data[i];
}
return total;
}
template <typename NType>
NType NArray<NType>::maxElements()
{
NType total = data[0];
for(int i = 1; i < length; i++)
{
if(data[i] > total) {total = data[i];}
}
return total;
}
template <typename NType>
int NArray<NType>::maxArg()
{
int index = 0;
for(int i = 1; i < length; i++)
{
if(data[i] > data[index]) {index = i;}
}
return index;
}
template <typename NType>
NType NArray<NType>::minElements()
{
NType total = data[0];
for(int i = 1; i < length; i++)
{
if(data[i] < total) {total = data[i];}
}
return total;
}
template <typename NType>
int NArray<NType>::minArg()
{
int index = 0;
for(int i = 1; i < length; i++)
{
if(data[i] < data[index]) {index = i;}
}
return index;
}
template <typename NType>
NArray<NType>& NArray<NType>::valsum(const NType& B)
{
for(int i = 0; i < length; i++)
{
data[i] += B;
}
return (*this);
}
template <typename NType>
NArray<NType>& NArray<NType>::sum(NArray<NType>& B)
{
NType* pB = B.getData();
for(int i = 0; i < length; i++)
{
data[i] += pB[i];
}
return (*this);
}
template <typename NType>
NArray<NType>& NArray<NType>::sum(NArray<NType>& A, NArray<NType>& B)
{
NType* pA = A.getData();
NType* pB = B.getData();
for(int i = 0; i < length; i++)
{
data[i] = pA[i] + pB[i];
}
return (*this);
}
template <typename NType>
NArray<NType>& NArray<NType>::valmul(const NType& B)
{
for(int i = 0; i < length; i++)
{
data[i] *= B;
}
return (*this);
}
template <typename NType>
NArray<NType>& NArray<NType>::valsign()
{
for(int i = 0; i < length; i++)
{
data[i] = -data[i];
}
return (*this);
}
template <typename NType>
NArray<NType>& NArray<NType>::valdiv(const NType& B)
{
for(int i = 0; i < length; i++)
{
data[i] /= B;
}
return (*this);
}
template <typename NType>
NArray<NType>& NArray<NType>::mul(NMatrix<NType>& B, bool orient)
{
//return this->mul(*this, B, orient);
NType* datacpy = nullptr;
if(data != nullptr)
{
datacpy = new NType[length];
this->memCopy(datacpy, data);
}
int i, j, k;
NType value = 0;
NType* pB = B.getData();
int lenA = length;
int sizeColumnB = B.getSizeColumn();
if(lenA == B.getLenRow() && orient)
{
int lenB = B.getLenColumn();
if(lenB > size) {resize(lenB);}
length = lenB;
for(j = 0; j < lenB; j++)
{
value = 0;
for(k = 0; k < lenA; k++)
{
value += datacpy[k] * pB[k*sizeColumnB + j];
}
data[j] = value;
}
}
else if(lenA == B.getLenColumn() && !orient)
{
int lenB = B.getLenRow();
if(lenB > size) {resize(lenB);}
length = lenB;
for(i = 0; i < lenB; i++)
{
value = 0;
for(k = 0; k < lenA; k++)
{
value += datacpy[k] * pB[i*sizeColumnB + k];
}
data[i] = value;
}
}
else
{
throw "NArray: size is not mul!";
}
if(datacpy != nullptr) {delete[] datacpy;}
return (*this);
}
template <typename NType>
NArray<NType>& NArray<NType>::mul(NArray<NType>& B)
{
//return this->mul(*this, B);
NType* pB = B.getData();
for(int i = 0; i < length; i++)
{
data[i] *= pB[i];
}
return (*this);
}
template <typename NType>
NArray<NType>& NArray<NType>::mul(NArray<NType>& A, NArray<NType>& B)
{
NType* pA = A.getData();
NType* pB = B.getData();
for(int i = 0; i < length; i++)
{
data[i] = pA[i] * pB[i];
}
return (*this);
}
template <typename NType>
NArray<NType>& NArray<NType>::div(NArray<NType>& B)
{
NType* pB = B.getData();
for(int i = 0; i < length; i++)
{
data[i] /= pB[i];
}
return (*this);
}
template <typename NType>
NArray<NType>& NArray<NType>::div(NArray<NType>& A, NArray<NType>& B)
{
NType* pA = A.getData();
NType* pB = B.getData();
for(int i = 0; i < length; i++)
{
data[i] = pA[i] / pB[i];
}
return (*this);
}
template <typename NType>
NArray<NType>& NArray<NType>::prufdiv(NArray<NType>& B, const NType& val)
{
NType* pB = B.getData();
for(int i = 0; i < length; i++)
{
data[i] = (pB[i] == 0 ? val : data[i] / pB[i]);
}
return (*this);
}
template <typename NType>
NArray<NType>& NArray<NType>::prufdiv(NArray<NType>& A, NArray<NType>& B, const NType& val)
{
NType* pA = A.getData();
NType* pB = B.getData();
for(int i = 0; i < length; i++)
{
data[i] = (pB[i] == 0 ? val : pA[i] / pB[i]);
}
return (*this);
}
template <typename NType>
NArray<NType>& NArray<NType>::mul(NArray<NType>& A, NMatrix<NType>& B, bool orient)
{
int i, j, k;
NType value = 0;
NType* pA = A.getData();
NType* pB = B.getData();