#include<iostream> #include<cmath> using namespace std; int abs(int x) {int b; if(x>=0){b=x; }else{b=-x; } cout<<b; return 0; } float abs(float x) {float b; if(x>=0){b=x; }else{b=-x; } cout<<b; return 0; } double abs(double x) {double b; if(x>=0){b=x; }else{b=-x; } cout<<b; return 0; } void main() {int x=-10; float y=-2.5; double z=-3.8; cout<<abs(x)<<endl<<abs(y)<<endl<<abs(z)<<endl; return 0
时间: 2024-02-19 17:25:33 浏览: 98
这是一个使用函数重载实现绝对值计算的 C++ 程序。其中,abs 函数被重载了三次,分别用于计算 int、float 和 double 类型的绝对值。在函数内部,通过条件语句判断参数 x 的正负性,然后分别赋值给变量 b,并输出 b 的值。最后,程序在主函数中调用三次不同类型的 abs 函数,并输出结果。
相关问题
#include<iostream> #include<cmath> #include<ctime> #include<cstdio> #include<fstream> #include<algorithm> #include<deque> #include<queue> #include<string> #include<map> #include<stack> #include<set> //#include<windows.h> using namespace std; int main() { int a[4][4],b[16]= { 0 } ,k=0; srand(time(0)); for (int i=0;i<4;i++) { for (int j=0;j<4;j++) { a[i][j]=rand()%10; if(a[i][j]%2==1) { b[k]=a[i][j]; ++k; } } } for (int i=0;i<k;++i) { cout<<b[i]<<" "; } return 0; }
这是一个 C++ 的程序,它生成一个 $4\times4$ 的矩阵 $a$,并将其中的奇数存入数组 $b$ 中,最后输出 $b$ 数组的内容。具体实现过程是:首先通过 `srand(time(0))` 函数初始化随机数种子,接着用 `rand()%10` 生成 $0$ 到 $9$ 之间的随机整数填充矩阵 $a$,如果矩阵中的元素是奇数,则将其存入数组 $b$ 中,最后依次输出 $b$ 数组中的元素。
在不使用任何STL容器的前提下实现这个代码#include <iostream> #include <memory> #include <stack> #include <fstream> #include <vector> #include <cmath> #include <iomanip> #include <exception> #include <climits> #include <array> #include <cstdint> #include <string> using namespace std; class T { public: virtual bool isOperator() = 0; virtual ~T() {} };
可以使用裸指针和自定义容器实现这段代码。
首先,我们需要定义一个自定义容器来存储T类型的指针。这个容器可以使用动态数组实现,需要自己管理内存。下面是一个简单的实现:
```c++
class MyVector {
public:
MyVector() : size_(0), capacity_(0), data_(nullptr) {}
~MyVector() {
clear();
delete[] data_;
}
void push_back(T* ptr) {
if (size_ == capacity_) {
reserve(capacity_ == 0 ? 1 : capacity_ * 2);
}
data_[size_++] = ptr;
}
void pop_back() {
if (size_ > 0) {
--size_;
}
}
T* back() const {
return size_ > 0 ? data_[size_ - 1] : nullptr;
}
bool empty() const {
return size_ == 0;
}
void clear() {
for (int i = 0; i < size_; ++i) {
delete data_[i];
}
size_ = 0;
}
private:
void reserve(int new_capacity) {
T** new_data = new T*[new_capacity];
for (int i = 0; i < size_; ++i) {
new_data[i] = data_[i];
}
delete[] data_;
data_ = new_data;
capacity_ = new_capacity;
}
int size_;
int capacity_;
T** data_;
};
```
接下来,我们需要定义一个栈,用来存储T类型的指针。这个栈可以使用动态数组实现,也需要自己管理内存。栈的基本操作包括push、pop、top等,可以按照以下方式实现:
```c++
class MyStack {
public:
MyStack() : size_(0), capacity_(0), data_(nullptr) {}
~MyStack() {
clear();
delete[] data_;
}
void push(T* ptr) {
if (size_ == capacity_) {
reserve(capacity_ == 0 ? 1 : capacity_ * 2);
}
data_[size_++] = ptr;
}
void pop() {
if (size_ > 0) {
--size_;
}
}
T* top() const {
return size_ > 0 ? data_[size_ - 1] : nullptr;
}
bool empty() const {
return size_ == 0;
}
void clear() {
for (int i = 0; i < size_; ++i) {
delete data_[i];
}
size_ = 0;
}
private:
void reserve(int new_capacity) {
T** new_data = new T*[new_capacity];
for (int i = 0; i < size_; ++i) {
new_data[i] = data_[i];
}
delete[] data_;
data_ = new_data;
capacity_ = new_capacity;
}
int size_;
int capacity_;
T** data_;
};
```
最后,我们可以定义一个派生自T的类,来实现isOperator()函数。这个函数在子类中可以根据实际需求来具体实现。
```c++
class MyT : public T {
public:
bool isOperator() override {
// 实现具体的逻辑
return false;
}
};
```
这样,就可以在不使用STL容器的前提下实现这个代码了。完整代码如下:
```c++
#include <iostream>
using namespace std;
class T {
public:
virtual bool isOperator() = 0;
virtual ~T() {}
};
class MyT : public T {
public:
bool isOperator() override {
// 实现具体的逻辑
return false;
}
};
class MyVector {
public:
MyVector() : size_(0), capacity_(0), data_(nullptr) {}
~MyVector() {
clear();
delete[] data_;
}
void push_back(T* ptr) {
if (size_ == capacity_) {
reserve(capacity_ == 0 ? 1 : capacity_ * 2);
}
data_[size_++] = ptr;
}
void pop_back() {
if (size_ > 0) {
--size_;
}
}
T* back() const {
return size_ > 0 ? data_[size_ - 1] : nullptr;
}
bool empty() const {
return size_ == 0;
}
void clear() {
for (int i = 0; i < size_; ++i) {
delete data_[i];
}
size_ = 0;
}
private:
void reserve(int new_capacity) {
T** new_data = new T*[new_capacity];
for (int i = 0; i < size_; ++i) {
new_data[i] = data_[i];
}
delete[] data_;
data_ = new_data;
capacity_ = new_capacity;
}
int size_;
int capacity_;
T** data_;
};
class MyStack {
public:
MyStack() : size_(0), capacity_(0), data_(nullptr) {}
~MyStack() {
clear();
delete[] data_;
}
void push(T* ptr) {
if (size_ == capacity_) {
reserve(capacity_ == 0 ? 1 : capacity_ * 2);
}
data_[size_++] = ptr;
}
void pop() {
if (size_ > 0) {
--size_;
}
}
T* top() const {
return size_ > 0 ? data_[size_ - 1] : nullptr;
}
bool empty() const {
return size_ == 0;
}
void clear() {
for (int i = 0; i < size_; ++i) {
delete data_[i];
}
size_ = 0;
}
private:
void reserve(int new_capacity) {
T** new_data = new T*[new_capacity];
for (int i = 0; i < size_; ++i) {
new_data[i] = data_[i];
}
delete[] data_;
data_ = new_data;
capacity_ = new_capacity;
}
int size_;
int capacity_;
T** data_;
};
int main() {
MyVector vec;
vec.push_back(new MyT());
vec.clear();
MyStack stk;
stk.push(new MyT());
stk.clear();
return 0;
}
```
阅读全文