算法
永远的小白呀
这个作者很懒,什么都没留下…
展开
-
高精度模板 仅加法与减法
高精度加法是处理大数字的数学方法,这里是简单的高精度加法,可以用来入门 #include<iostream> using namespace std; string str1, str2; int main(){ cin >> str1 >> str2; string str; int a1 = str1.length(); int a2 = str2.length(); if(a1>a2){ for (i原创 2020-10-26 15:49:10 · 154 阅读 · 1 评论 -
深度优先搜索 全排列与地图最短路径问题
#include<stdio.h> int a[10], book[10], n; void dfs(int step) { int i; if(step==n+1) { for ( i = 1; i <= n;i++) printf("%d", a[i]); printf("\n"); return; } for ( i = 1; i <= n;i++) {原创 2020-09-16 19:10:21 · 341 阅读 · 0 评论