题解 | #数组类的构造函数#

数组类的构造函数

https://www.nowcoder.com/practice/1f36f85726474afbb103f65a24106824

#include <iostream>
#include <bits/stdc++.h>
#include <sstream>
using namespace std;
class Array {
  private:
    int n;//数组大小
    int* a;//数组
  public:
    // write your code here......
    Array() {
        cin >> n;
        cin.ignore();
        string s;
        getline(cin, s);
        a = new int[n];
        memset(a, 0, n * sizeof (int));
        stringstream ss(s);
        int num;
        int idx = 0;

        while (ss >> num) { //ss中的字符传入num中
            if (idx < n) {
                a[idx] = num;
                idx++;
            }

        }
//        for(string::iterator itr=s.begin();itr != s.end();++itr){
//            if(isdigit(*itr)){
//                *p = *itr-'0';//字符类型转换为整型 赋值
//                //因为字符型变量赋值给整型,就会将字符转换为ASCILL码值给整型变量
//                p++;
//            }
//        }

    }
    ~Array() {
        delete []a;
    }
    void show() {
        for (int i = 0; i < n; i++) cout << a[i] << ' ';
    }
};
int main() {
    Array a;
    a.show();
    return 0;
}

全部评论

相关推荐

Allen好Iverson:我看牛客都是20-30k的 这个3.9k爆出来有点,哈哈哈哈
点赞 评论 收藏
分享
亲切的长颈鹿又在摸鱼:找销售啊,算法机器人不是你这个学历能干的
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务