python数据类型 摘要:列表(list)def reverseWords(input): # 通过空格将字符串分隔符,把各个单词分隔为列表 inputWords = input.split(" ") …… 文章列表 2022年04月16日 0 点赞 0 评论 318 浏览 评分:9.9
精品文章 每日算法:快速排序 摘要:要求:手撕快排,用于个人复习。这玩意隔一段时间不写就容易出错,警钟长鸣。出错点:(1)返回值类型是 void ,可不可以是 vector<int> ?(2)如果是void,传入参数的 vector 就…… 文章列表 2022年04月12日 0 点赞 0 评论 196 浏览 评分:9.9
输入确定数组长度 摘要:用 malloc库函数实现/* malloc example: random string generator*/#include <stdio.h> /* printf, scanf, N…… 文章列表 2022年04月12日 0 点赞 0 评论 123 浏览 评分:0.0
梯度算利润 摘要:#include<stdio.h>void main(){ double a, sum = 0; float rate; scanf("%lf", &a); if (a > 1000000) { r…… 文章列表 2022年04月11日 0 点赞 0 评论 198 浏览 评分:0.0
振兴中华O。o 摘要:#include <bits/stdc++.h>using namespace std;int a[]={0,1};int b[]={1,0};int cnt;void dfs(int x,int y…… 文章列表 2022年04月09日 0 点赞 0 评论 153 浏览 评分:0.0
李白打酒O。o 摘要:#include <bits/stdc++.h>using namespace std;int sum = 0;void f(int dian, int hua, int jiu){ if(di…… 文章列表 2022年04月06日 0 点赞 0 评论 329 浏览 评分:2.0
学过线性代数的应该都知道矩阵加法是矩阵对应位数相加 摘要:学过线性代数的应该都知道矩阵加法是矩阵对应位数相加#include<iostream>#include<cstring>#include<algorithm>#include<string.h>#in…… 文章列表 2022年04月06日 0 点赞 0 评论 207 浏览 评分:0.0
矩阵行列互换 摘要:#原始#00 01 02#10 11 12#20 21 22#转化为#00 10 20#01 11 21#02 12 22#定义 3*3二维数组arr=[[0 for i in range(3)] f…… 文章列表 2022年04月06日 0 点赞 0 评论 163 浏览 评分:9.9
九宫填数(c++)代码 摘要:#include<iostream>#include<cstdio>#include<algorithm>#include<cmath>#include<cstring>#include<vector…… 文章列表 2022年04月05日 0 点赞 0 评论 171 浏览 评分:0.0
a+b(python)两数之和 摘要:while True: num1=list(map(int,input().split())) sum=0 for i in range(0,len(num1)): s…… 文章列表 2022年04月05日 0 点赞 0 评论 221 浏览 评分:0.0