排序、位置变换

1、 组合成最小数字

  • 题目
    这里写图片描述
  • 注意:不可简单判断两个字符串ASCII码大小然后按字典序输出。
  • 代码如下
#include <iostream>
#include <string>
using namespace std;
string str[200];
int main()
{
    int m;
    int i, j;
    string _str;
    int min;//记录排序最小的位置

    cin >> m;
    for (i = 0; i < m; i++) {
        cin >> str[i] ;
    }

    //类似比较数字大小进行字符串大小比较并交换顺序
    for (i = 0; i < m; i++) {

        _str = str[i];
        min = i;

        for (j = i; j < m; j++) {
            //判断最小组合数
            if ((_str + str[j])>(str[j] + _str)) {
                _str = str[j];
                min = j;
            }
        }

        //交换位置
        str[min] = str[i];
        str[i] = _str;
    }

    for (i = 0; i < m; i++) {
        cout << str[i];
    }

    cout << endl;
    return 0;
}

/*
     *****判断最小组合数*****

     if (_str > str[j]) {
         _str = str[j];
         min = j;
     }

     ******错误做法原因******
     例如当1和100比较时会输出1100而非1001
 */

2、矩阵坐标变换

  • 特殊角度
    • 代码如下
#include<iostream>  
using namespace std;

int main() {
    int n;
    int i, j;
    int x1 = 0, x2 = 0, x3 = 0;
    cin >> n;

    cout << endl << "初始坐标:" << endl;
    for (i = 1; i <= n; i++) {
        for (j = 1; j <= n; j++) {
            cout << "(" << i << "," << j << ") ";
        }
        cout << endl;
    }
    cout << endl;

    cout << "顺时针转90°:" << endl;
    for (i = 1; i <= n; i++) {
        for (j = 1; j <= n; j++) {
            cout << "(" << n - j + 1 << "," << i << ") ";
        }
        cout << endl;
    }
    cout << endl;   

    cout << "逆时针转90°:" << endl;
    for (i = 1; i <= n; i++) {
        for (j = 1; j <= n; j++) {
            cout << "(" << j << "," << n - i + 1 << ") ";
        }
        cout << endl;
    }
    cout << endl;

    cout << "顺/逆时针转180°:" << endl;
    for (i = 1; i <= n; i++) {
        for (j = 1; j <= n; j++) {
            cout << "(" << n - i + 1 << "," << n - j + 1 << ") ";
        }
        cout << endl;
    }
    cout << endl;

    cout << "水平翻转:" << endl;
    for (i = 1; i <= n; i++) {
        for (j = 1; j <= n; j++) {
            cout << "(" << i << "," << n - j + 1 << ") ";
        }
        cout << endl;
    }
    cout << endl;

    return 0;
}
  • 输出效果:
    这里写图片描述
    这里写图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值