- 博客(5)
- 收藏
- 关注
原创 Sqlist 插入、删除元素
Sqlist 插入、删除元素#define MAXSIZE 100class sqlist{private: int num[MAXSIZE]; int sql_size;public: sqlist(int a[],int lenth) { for(int i=0;i<lenth;i++) { num[i]=a[i]; } sql_size=lenth; } bool insert_sql(int a) { if(sql_size==MAXSIZE
2021-10-05 21:44:33 584 1
原创 cosx sinx 泰勒展开 C++
cosx sinx 泰勒展开 C++sinx , cosx 的泰勒展开:void tylor_sin(int n){ double s=n; double i=1; double term=n; do { term=-term*n*n/((i+2)*(i+1)); s+=term; i+=2; }while(fabs(term)>1e-6); cout<<"the value of sin"<<n<<" is :"<&l
2021-10-05 17:16:03 5816 2
原创 转换构造函数 与 类型转换函数
转换构造函数 与 类型转换函数#include<iostream>using namespace std;class Complex{public: Complex(){real=0;imag=3.33;} Complex(double r,double i):real(r),imag(i){} Complex(double r){real=r;imag=2.22;} Complex(const Complex& c){real=c.real;imag=c.imag;
2021-09-25 21:32:30 167 1
原创 经典排序算法(c++)
十大经典排序算法(c++)1.冒泡排序//冒泡排序算法基础1#includeusing namespace std;int main(){ void bubble_sort(int arr[]);int i,a[11];for(i = 1; i < 11;i++){cout << “a[” << i << “]=”;cin >> a[i];}cout << “The original numbers :” <
2021-08-31 20:28:29 173
原创 Win10环境下安装Ubuntu和安装GNU Radio
Win10环境下安装Ubuntu和安装GNU Radio由于本学期高频电子课设原因,需要使用GNU Radio 需要先安装Ubuntu系统。这里我们用虚拟机装一个Ubuntu系统,步骤如下:1. 安装VMware由于正版需要收费,至于怎么下我就不多说了,百度一搜 VMware,按照步骤下载激活就完事了。2.下载、安装Ubuntu系统Ubuntu官网链接:https://ubuntu.com/download/desktop下载系统安装Ubuntu系统过程不难,按照链接的步骤一步一步来。
2021-06-16 15:06:34 1752
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人