Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,851 questions

51,772 answers

573 users

How to transpose a matrix (interchanging of rows and columns) in C++

2 Answers

0 votes
#include <iostream>

int main()
{   
    int matrix[3][3] = {{1, 2, 3},
                        {4, 5, 6},
                        {7, 8, 9}};
    int transpose[3][3] = {{0}};
  
    size_t rows = sizeof matrix/sizeof matrix[0];
    size_t cols = (sizeof matrix/sizeof matrix[0][0])/rows;
 
    for (int i = 0; i < rows; i++)
        for (int j = 0; j < cols; j++)
            transpose[j][i] = matrix[i][j];
             
    for (int i = 0; i < cols; i++)  { // matrix[rows][cols] = transpose[cols][rows]
        for (int j = 0; j < rows; j++)
            std::cout << transpose[i][j] << " ";
        std::cout << "\n";
    }
     
    return 0;
}

 
   
/*
run:
 
1 4 7 
2 5 8 
3 6 9 
 
*/

 



answered Jan 18, 2021 by avibootz
0 votes
#include <iostream>
#include <vector>

std::vector<std::vector<int>> transpose(const std::vector<std::vector<int>>& matrix) {
    if (matrix.empty()) return {};

    size_t rows = matrix.size();
    size_t cols = matrix[0].size();
    std::vector<std::vector<int>> result(cols, std::vector<int>(rows));

    for (size_t i = 0; i < rows; ++i)
        for (size_t j = 0; j < cols; ++j)
            result[j][i] = matrix[i][j];

    return result;
}

int main() {
    std::vector<std::vector<int>> matrix = {
        {1, 2, 3},
        {4, 5, 6}
    };

    auto transposed = transpose(matrix);

    for (const auto& row : transposed) {
        for (int val : row)
            std::cout << val << " ";
        std::cout << "\n";
    }
}



/*
run:

1 4 
2 5 
3 6 

*/



 



answered Jun 26, 2025 by avibootz
...