文章列表

筛选

自定义函数之数字后移

摘要:#include<stdio.h>void run_run(int arr[],int brr[],int a,int c){    int b=0;      for(b=0;b<a;b++)   ……

1514-夺宝奇兵

摘要:# 1514-夺宝奇兵 **dp思想:** 每个数字他只可能从下面或者右下角走上来 所以我们只需要从这两个位置判断哪个比较大就好了 因此状态方程为f[i][j]=max(f[i+1][j]+f……

母牛的故事

摘要:代码:# include<stdio.h>int fun(int n){    if(n<=3)     return n;    else     return fun(n-1)+fun(n-3);……

1446-核桃的数量

摘要:# 1446-核桃的数量 思想: 就是求三个数的最小公倍数 ```c++ #include using namespace std; int lcm(int a,int b……

盐水的故事

摘要:#include<stdio.h>int main(){    double vul,d,a;    long b,c=0,e=0,count=0;    scanf("%lf%lf",&vul,&d……

1115-DNA(c语言)

摘要:#include<stdio.h> #define N 100 void f(int a,int b) { int m=0; char P[N][N]; for(int i=0;i<……

什么是指针,基本指针类型

摘要:总结:#include<stdio.h> int main()(int*p;//p是变量的名字,int *p变量存放的是int类型变量的地址//int *p不表示一个名字叫*p的变量//所谓int *……

1128- 插入前面

摘要:审题!!!第一行1个正整数:N,范围在[1,100]。 第二行N个不同的正整数:范围在[1,10000]。 第三行2个正整数a和x。x范围在[1,N]。#include<bits/stdc++.h> ……