-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmat_transpose.cpp
40 lines (34 loc) · 1.12 KB
/
mat_transpose.cpp
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
// SHIV's code for matrix transpose
#include<bits/stdc++.h>
void arr_trans(std::vector<std::vector<int>> vec, int n, int m){
std::vector<std::vector<int>> trans;
std::map<int, std::vector<int>> col_map;
for(int i = 0; i <n; i++){
col_map.insert(std::pair<int, std::vector<int>>(i, std::vector<int>()));
}
std::cout << "Original:\n";
for(std::vector<std::vector<int> >::iterator t = vec.begin(); t!=vec.end(); t++){
for(std::vector<int>::iterator t2 = t->begin(); t2!=t->end(); t2++){
int index = std::distance(t->begin(), t2);
std::cout << "("<<*t2 <<")";
col_map[index].push_back(*t2);
}
std::cout << "\n";
}
std::cout << "Transpose:\n";
for(std::map<int, std::vector<int>>::iterator itr= col_map.begin(); itr != col_map.end(); ++itr) {
std::vector<int> temp = itr->second;
trans.push_back(temp);
for(std::vector<int>::iterator t2 = temp.begin(); t2!=temp.end(); t2++){
std::cout << "("<<*t2<<")";
col_map[itr->first].push_back(*t2);
}
std::cout << "\n";
}
}
int main(){
int n_cols=4, m_rows=1;
std::vector<std::vector<int> > arr = {{1,2,3,4}};
arr_trans(arr, n_cols, m_rows);
return 0;
}