首页 > 其他分享 >实验六

实验六

时间:2022-12-07 12:24:39浏览次数:35  
标签:index int ++ Vector 实验 include size

task3_1.cpp
#include <iostream>
#include <fstream>
#include <array>
#define N 5

int main() {
    using namespace std;

    array<int, N> x {97, 98, 99, 100, 101};

    ofstream out;
    out.open("data1.dat", ios::binary);
    if(!out.is_open()) {
        cout << "fail to open data1.dat\n";
        return 1;
    }

    out.write(reinterpret_cast<char *>(&x), sizeof(x));
    out.close();
}
task3_2.cpp
#include <iostream>
#include <fstream>
#include <array>
#define N 5

int main() {
    using namespace std;
    array<int, N> x;

    ifstream in;
    in.open("data1.dat", ios::binary);
    if(!in.is_open()) {
        cout << "fail to open data1.dat\n";
        return 1;
    }

    in.read(reinterpret_cast<char *>(&x), sizeof(x));
    in.close();

    for(auto i = 0; i < N; ++i)
        cout << x[i] << ", ";
    cout << "\b\b \n";
}

  

修改后

#include<iostream>
#include<fstream>
#include<array>
#define N 5
int main(){
    using namespace std;
    array<char,N>x;
    ifstream in;
    in.open("data.txt",ios::binary);
    if(!in.is_open()){
        cout<<"fail to open data1.dat\n";
        return 1;
    }
    in.read(reinterpret_cast<char *>(&x),sizeof(x));
    in.close();
    for(auto i=0;i<N;i++)
    cout<<x[i]<<",";
    cout<<"\b\b\n";
}

  

Vector.hpp
#pragma once
#include<iostream>
#include<cassert>

using namespace std;

// delaration of template class
template<typename T>
class Vector {
public:
    Vector(int n) :size{ n } {
        p = new T[n];
    }

    Vector(int n, T value) :size{ n } {
        p = new T[n];
        for (int i = 0; i < size; i++) {
            p[i] = value;
        }
    }

    Vector(const Vector& v) :size{ v.size } {
        p = new T[size];
        for (int i = 0; i < size; i++) {
            p[i] = v.p[i];
        }
    }

    ~Vector() {
        delete[] p;
    }

    int get_size() { 
        return size; 
    }

    T& at(int index) {
        assert(index >= 0 && index < size);
        return p[index];
    }

    T& operator[](int index) {
        assert(index >= 0 && index < size);
        return p[index];
    }

    template<typename T1>
    friend void output(const Vector<T1>& v);
private:
    int size;
    T* p;
};

template<typename T1>
void output(const Vector<T1>& v) {
    for (int i = 0; i < v.size; i++) {
        cout << v.p[i] << " ,";
    }
    cout << endl;
}
task4.cpp
#include <iostream>
#include "Vector.hpp"

void test() {
    using namespace std;

    int n;
    cin >> n;

    Vector<double> x1(n);
    for (auto i = 0; i < n; ++i)
        x1.at(i) = i * 0.7;

    output(x1);

    Vector<int> x2(n, 42);
    Vector<int> x3(x2);

    output(x2);
    output(x3);

    x2.at(0) = 77;
    output(x2);

    x3[0] = 999;
    output(x3);
}

int main() {
    test();
}

  

task5.cpp
#include<iostream>
#include <fstream>
#include<string>
#include<iomanip>
using namespace std;
void output(std::ostream& out)
{
    string a[27][27] = { " " };
    int n = 0;
    for (int i = 1; i < 27; i++)
    {
        a[i][0] = to_string(i);
        a[0][i] = 97 + n;
        n++;
    }
    for (int i = 1; i < 27; i++)
    {
        n = i;
        for (int j = 1; j < 27; j++)
        {
            if (65 + n > 90)
            {
                a[i][j] = 65 + n - 26;
            }
            else
            {
                a[i][j] = 65 + n;
            }
            n++;
        }
    }
    for (int i = 0; i < 27; i++) {
        for (int j = 0; j < 27; j++) {
            out <<right<< setw(2) << a[i][j] << " ";
        }
        out << endl;
    }
}
 
int main()
{
    ofstream out;
    out.open("cipher_key.txt", ios::out);
        if (!out.is_open())
        {
            cout << "fail to open file\n";
            return 1;
        }
        output(out);
        output(cout);
        out.close();
}

  

 

标签:index,int,++,Vector,实验,include,size
From: https://www.cnblogs.com/2021zxq/p/16962713.html

相关文章

  • 实验6
    #include<fstream>#include<iostream>#include<bits/stdc++.h>usingnamespacestd;voidoutput(ofstream&out,stringTo="con"){out.open(To);......
  • uml实验总结
    昨天终于完成了uml,所以实验报告,在这次我学了uml九大图,学会了用例图、类图、顺序图、活动图、协作图、状态机图和部署图,我发现报告是很难写,系统算简单的,说明书报告也难写,花......
  • 实验6 模板类和文件IO
    实验任务3task3_1.cpp#include<iostream>#include<fstream>#include<array>#defineN5intmain(){usingnamespacestd;array<int,N>x{97,98,......
  • 实验六
    task3_1#include<iostream>#include<vector>template<typenameT>voidoutput(constT&obj){for(auto&item:obj)std::cout<<item<<",";std::cout<<"......
  • 实验6
    task3:3.1代码:#include<iostream>#include<fstream>#include<array>#defineN5intmain(){usingnamespacestd;array<int,N>x{97,98,99,100......
  • 实验六
    实验六task4vector.hpp#pragmaonce#include<iostream>usingnamespacestd;template<typenameT>classVector{public: Vector(){}; Vector(intn):size{n......
  • 实验六
    Task3:task3_1.cpp#include<iostream>#include<fstream>#include<array>#defineN5intmain(){usingnamespacestd;array<int,N>x{97,98,99......
  • Python实验报告——第6章 函数
    实例01:输出每日一帖(共享版) 在IDLE中创建一个名称为function_tips.py的文件,然后在该文件中创建一个名称为function_tips的函数,在该函数中,从励志文字列表中获取一条......
  • 实验六
    task3测试结果:      源代码:1#include<iostream>2#include<fstream>3#include<array>4#defineN556intmain(){7usingname......
  • 实验六 模板类与文件I/O
     task3task3_11#include<iostream>2#include<fstream>3#include<array>4#defineN556intmain(){7usingnamespacestd;89a......