C++ 算法

本文概述了C++编程中的关键概念和技术,包括控制精确小数位数、ASCII码转换、十进制转十六进制、字符串处理、循环结构、数组操作、查找最值、数字转字符串、计数和去重、向量排序以及向上/向下取整。
摘要由CSDN通过智能技术生成

C++ 算法

1、精确小数位数

#include<iostream>
#include<iomanip> //运用保留几位小数的函数
using namespace std;

int main(){
    double res;
    cout<<setprecision(3)<<fixed<<res;
    return 0;
}#

# 2、ASCCI码和字符相互转化
//已知字符a求a的ascci码x
x=int('a');
//已知a的ascci码x,求a
a=char(x);

3、十进制转十六进制

#include<iostream>
#include<iomanip>
using namespace std;
int main(){
    int a,b;
    cin>>a>>b;
    cout<<hex<<(a+b)<<endl;
}

4、字符串切片

string n;
cin>>n;
string m=n.substr(4,2);//下标从4开始截取两个字符串

5、while(0)表示循环不运行

while(0){
//循环不运行
}

6、数组里最值

int n;
int a[100];
int jicha = *max_element(a, a + n) - *min_element(a, a + n);

7、数字转字符串

long long int n;
char x;
cin >> n>>x;
string s = "";
for (int i = 1; i <= n; i++) {
    s += to_string(i);
}

8、计算string里面出现字符的个数

#include<algorithm>
int cnt = count(s.begin(), s.end(), x);

9、去重(unique)

unique只能去除相邻相同的数字

#include <iostream>
#include <algorithm>

using namespace std;

int main()
{
	int a[10] = { 0, 7, 7, 6, 1, 1, 5, 5, 8, 9 };

	int n = unique(a, a + 10) - a;
	
	cout << n << endl;        // 7
	
	for (int i = 0; i < n; i++)
	    cout << a[i] << " ";  // 0 7 6 1 5 8 9
	return 0;
}

10、push_back插入和sort排序

#include<iostream>
#include<algorithm>
#include<vector>
using namespace std;
int main() {
	int N;
	cin >> N;
	vector<int> a(N);
	for (int i = 0; i < N; i++) {
		cin >> a[i];
	}
	int m;
	cin >> m;
	a.push_back(m);
	sort(a.begin(), a.end());
	for (int i = 0; i < N + 1; i++) {
		cout<< a[i] << " ";
	}
}

11、向上向下取整

#include<iostream>
#include<cmath>
using namespace std;
int main(){
    double a;
    cin>>a;
    cout<<floor(a)<<endl;
    cout<<ceil(a)<<endl;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值