Python3算法类多组数据输入输出格式 摘要:在 Python3 中舍弃了 Python2 中的 raw_input() 的输入方式,读入的数据全部是字符串类型,需要使用 int() 强转即可,input()读入一行数据,strip() 去除两端…… 文章列表 2019年04月15日 3 点赞 0 评论 1847 浏览 评分:9.9
数据结构之二叉树的递归遍历和非递归遍历 摘要:一、二叉树在计算机科学中,树是一种重要的非线性数据结构,直观地看,它是数据元素(在树中称为结点)按分支关系组织起来的结构。二叉树是每个节点最多有两个子树的有序树。通常子树被称作“左子树”(left s…… 文章列表 2019年04月16日 2 点赞 0 评论 489 浏览 评分:0.0
回溯法求背包问题 摘要:#include<iostream> #define N 3 //物品总数 #define C 16//背包总质量 using namespace std; int w[N]={10,8,5}…… 文章列表 2019年04月20日 1 点赞 0 评论 554 浏览 评分:0.0
回溯法求旅行售货员问题 摘要:#include<iostream> using namespace std; const int INF = 10000000; int n, cc = 0, bestc = INF;//n表…… 文章列表 2019年04月20日 0 点赞 0 评论 877 浏览 评分:0.0
数据结构之图的创建(邻接表法) 摘要:#include<iostream> #include<cstdio> #include<cstdlib> using namespace std; #define ok 1 #define…… 文章列表 2019年04月22日 0 点赞 0 评论 646 浏览 评分:0.0
数据结构之图的创建(邻接矩阵法) 摘要:#include<iostream> #include <cstdio> #include <cstdlib> using namespace std; //图的邻接矩阵存储结构 typed…… 文章列表 2019年04月23日 1 点赞 0 评论 866 浏览 评分:0.0
1951 求平方和 摘要:#include<stdio.h>#include<math.h>int main(){int a,b,c=0;scanf("%d%d",&a,&b);c=pow(a,2)+pow(b,2);prin…… 文章列表 2019年05月05日 0 点赞 0 评论 384 浏览 评分:0.0
求四位吸血鬼数字 摘要:吸血鬼数字是指位数为偶数的数字,可以由一对数字相乘而得到,而这对数字各包含乘积的一半位数的数字,其中从最初的数字中选取的数字可以任意排序。如1260 = 21 * 60 1827 = 21 * 87…… 文章列表 2019年05月05日 6 点赞 0 评论 585 浏览 评分:0.0
问题 1749: 字符排序[C++求解] 摘要:#include <bits/stdc++.h> using namespace std; void fuckingsort(char *arr) { for(int i = 0;…… 文章列表 2019年05月07日 0 点赞 0 评论 294 浏览 评分:0.0
问题 1755: 姓名排序[C++描述] 摘要:#include <bits/stdc++.h> using namespace std; int main() { int m; cin >> m; whil…… 文章列表 2019年05月07日 1 点赞 0 评论 539 浏览 评分:0.0