csp2015-03

csp2015-03,第1张

csp2015-03

加油哦~
    • 第一题
    • 第二题

第一题

201503-1 图像旋转

这题注意:大的数组一般定义为全局变量

#include 
using namespace std;
int board[1000][1000]={};

int main()
{
   int n,m;
   cin>>n>>m;
   for(int i=0;i>board[i][j];
    }
   }
   for(int j=m-1;0<=j;j--){
    for(int i=0;i 
第二题 

201503-2 数字排序

#include 
using namespace std;

struct Node{
int num;
int account;
};
bool cmp(struct Node a,struct Node b){
    if(a.account>b.account) return true;
    else if(a.account==b.account&&a.num>n;
   int num;
   vector numl;
   for(int i=0;i>num;
    int j=0;
    for(j=0;j<(int)numl.size();j++){
        if(numl[j].num==num) break;
    }
    if(j<(int)numl.size()) numl[j].account++;
    else {
            struct Node a;
            a.num=num;
            a.account=1;
            numl.push_back(a);
    }
   }

   sort(numl.begin(),numl.end(),cmp);
   for(int i=0;i<(int)numl.size();i++){
    cout<					
										


					

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5670328.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-17

发表评论

登录后才能评论

评论列表(0条)

保存