45.将3×3二维数组转置,并输出

简介: 45.将3×3二维数组转置,并输出

//1、定义一个3*3的二维数组

//2、输入内容,并在屏幕中输出

//3、运用for循环嵌套将数组转置,并输出

 

(1)我的程序:运用中间量交换

-错误版:转置算法有问题,需要好好模拟一下

#include<iostream>
using namespace std;
 
int main()
{
    int temp;
    int a[3][3];
    cout<<"please input 9 numbers: "<<endl;
 
    for(int i=0;i<3;i++)//用于输入内容
    {
        for(int j=0;j<3;j++)
        {
            cin>>a[i][j];
        }
    }
 
    for(int m=0;m<3;m++)//用于输出原矩阵
    {
        for(int n=0;n<3;n++)
        {
            cout<<a[m][n]<<" ";
        }
        cout<<endl;
    }
    cout<<endl;
 
    for(int p=0;p<3;p++)//用于将数组转置
    {
        for(int q=0;q<3;q++)
        {
            temp=a[p][q];
            a[p][q]=a[q][p];
            a[q][p]=temp;
        }
    }
 
    for(int x=0;x<3;x++)//用于输出转置后矩阵
    {
        for(int y=0;y<3;y++)
        {
            cout<<a[x][y]<<" ";
        }
        cout<<endl;
    }
    return 0;
}

-正确版:将转置算法改正

for(int p=0;p<3;p++)//用于将数组转置
    {
        for(int q=0;q<p;q++)//这里有改动
        {
            temp=a[p][q];
            a[p][q]=a[q][p];
            a[q][p]=temp;
        }
    }​

(2)运用中间数组实现:

#include<iostream>
using namespace std;
 
int main()
{
    int temp;
    int a[3][3];
    int b[3][3];//设置中间数组用于转置
    cout<<"please input 9 numbers: "<<endl;
 
    for(int i=0;i<3;i++)//用于输入内容
    {
        for(int j=0;j<3;j++)
        {
            cin>>a[i][j];
        }
    }
 
    for(int m=0;m<3;m++)//用于输出原矩阵
    {
        for(int n=0;n<3;n++)
        {
            cout<<a[m][n]<<" ";
        }
        cout<<endl;
    }
    cout<<endl;
 
    for(int p=0;p<3;p++)//用于将数组转置
    {
        for(int q=0;q<3;q++)
        {
              b[q][p]=a[p][q];
        }
    }
 
    for(int x=0;x<3;x++)//用于输出转置后矩阵
    {
        for(int y=0;y<3;y++)
        {
            cout<<b[x][y]<<" ";
        }
        cout<<endl;
    }
    return 0;
}

(3)间接转置:存入数组后,间接输出转置数组

#include<iostream>
using namespace std;
 
int main()
{
    int temp;
    int a[3][3];
    cout<<"please input 9 numbers: "<<endl;
 
    for(int i=0;i<3;i++)//用于输入内容
    {
        for(int j=0;j<3;j++)
        {
            cin>>a[i][j];
        }
    }
 
    for(int m=0;m<3;m++)//用于输出原矩阵
    {
        for(int n=0;n<3;n++)
        {
            cout<<a[m][n]<<" ";
        }
        cout<<endl;
    }
    cout<<endl;
 
    for(int x=0;x<3;x++)//用于输出转置后矩阵
    {
        for(int y=0;y<3;y++)
        {
            cout<<a[y][x]<<" ";//间接输出转置矩阵
        }
        cout<<endl;
    }
    return 0;
}

目录
相关文章
|
2月前
使用多维数组将两个矩阵相加
【10月更文挑战第30天】使用多维数组将两个矩阵相加。
39 2
|
2月前
等差数列输出 10x10 矩阵格式
【10月更文挑战第26天】等差数列输出 10x10 矩阵格式。
31 5
|
2月前
矩阵转换
【10月更文挑战第30天】矩阵转换。
32 3
|
8月前
19.把1~100存到二维数组a[10][10]中,并按二维矩阵形式输出
19.把1~100存到二维数组a[10][10]中,并按二维矩阵形式输出
49 0
创建二维数组和矩阵
在Julia中,可以使用逗号或两个冒号创建二维数组和矩阵。例如,`[1 2 3 4]`和`[1;; 2;; 3;; 4]`创建1x4矩阵。添加分号`;`创建多行,如`[1 2; 3 4]`形成2x2矩阵。使用冒号和空格,如`[1:2 3:4]`也可得到2x2矩阵。通过嵌入相同长度的一维数组,如`[[1,2] [3,4] [5,6]]`,可构建2x3矩阵。利用分号和空格能创建不同形状的矩阵,如2x3和3x2矩阵。
|
8月前
|
人工智能 小程序 BI
矩阵的转置、加和乘法写入C++
矩阵的转置、加和乘法写入C++
76 0
|
8月前
|
索引
转置矩阵-暴力解法&一行代码
转置矩阵-暴力解法&一行代码
48 0
第3章 数组与矩阵——3.3 矩阵元素的运算(2)
第3章 数组与矩阵——3.3 矩阵元素的运算(2)
第3章 数组与矩阵——3.3 矩阵元素的运算(1)
第3章 数组与矩阵——3.3 矩阵元素的运算(1)