我是靠谱客的博主 伶俐水蜜桃,最近开发中收集的这篇文章主要介绍C++ 猫狗收容所,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

/**
题目描述
有家动物收容所只收留猫和狗,但有特殊的收养规则,收养人有两种收养方式,
第一种为直接收养所有动物中最早进入收容所的,
第二种为选择收养的动物类型(猫或狗),并收养该种动物中最早进入收容所的。

给定一个操作序列int[][2] ope(C++中为vector<vector<int>>)代表所有事件。
若第一个元素为1,则代表有动物进入收容所,第二个元素为动物的编号,正数代表狗,负数代表猫;
若第一个元素为2,则代表有人收养动物,
    第二个元素若为0,则采取第一种收养方式,若为1,则指定收养狗,若为-1则指定收养猫。
请按顺序返回收养的序列。若出现不合法的操作,即没有可以符合领养要求的动物,则将这次领养操作忽略。

**/
#include<iostream>
using namespace std;
#include<vector>

class CatDogAsylum {
public:
    vector<int> asylum(vector<vector<int> > ope) {
        // write code here
        vector<int> result;
        // 初始化result为vector向量,初始值为0
        // valid表示输出向量中实际应该包含的元素
        vector<int> helper_queue;
        //构造辅助队列,初始状态下,队列中没有任何元素
        for(unsigned int i=0;i<ope.size();i++){
            if(ope[i][0]==1){
                // 代表有动物进入收容所
                helper_queue.push_back(ope[i][1]);
            }
            else if(ope[i][0]==2){
                // 第一个元素为2,则代表有人收养动物
                if(ope[i][1]==0){
                    if(helper_queue.size()>0){
                        result.push_back(helper_queue[0]);
                        helper_queue.erase(helper_queue.begin());
                    }
                }
                else if(ope[i][1]==1){
                    bool flag=false; // 表示从当前的队列中还没有找到为1的元素
                    unsigned int i=0;
                    while(i<helper_queue.size()){
                        if(helper_queue[i]>0){
                            flag=true;
                            break;
                        }
                        else{
                            i++;
                        }
                    }
                    if(flag==true){
                        result.push_back(helper_queue[i]);
                        helper_queue.erase(helper_queue.begin()+i);
                    }
                }
                else if(ope[i][1]==-1){
                    bool flag=false;
                    unsigned int j=0;
                    while(j<helper_queue.size()){
                        if(helper_queue[j]<0){
                            flag=true;
                            break;
                        }
                        else{
                            j++;
                        }
                    }
                    if(flag==true){
                        result.push_back(helper_queue[j]);
                        helper_queue.erase(helper_queue.begin()+j);
                    }
                }
            }
        }

        return result;
    }
};


int main(){
    vector<vector<int> > v;
    int a1[]={1,1};
    int a2[]={1,-1};
    int a3[]={2,0};
    int a4[]={2,-1};


    vector<int> line1(a1,a1+2);
    vector<int> line2(a2,a2+2);
    vector<int> line3(a3,a3+2);
    vector<int> line4(a4,a4+2);

    v.push_back(line1);
    v.push_back(line2);
    v.push_back(line3);
    v.push_back(line4);

    vector<int> output;
    CatDogAsylum here;
    output=here.asylum(v);
    for(unsigned int i=0;i<output.size();i++){
        cout<<output[i]<<endl;
    }

    return 0;
}

 

最后

以上就是伶俐水蜜桃为你收集整理的C++ 猫狗收容所的全部内容,希望文章能够帮你解决C++ 猫狗收容所所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(34)

评论列表共有 0 条评论

立即
投稿
返回
顶部