【天梯赛集训】7.18习题集

news2024/11/22 20:42:36

目录

7-1 递归 递推

7-2 函数的递归调用

7-3 A010 递归练习1

7-4 A011 递归练习2

7-5 A012 递归练习3

7-6 PG009 循环与递归

7-7 计算Fibonacci数列—递归

7-8 整数转换为字符串

7-9 简单的归并


AC: 9 / 9

用时:1 h 4 min

递归专题。

7-1 递归 递推

#include <iostream>
#include <algorithm>
#include <cstring>

using namespace std;

const int N = 110;

int n, f1, a, b;

int func(int x)
{
    if(x == 1) return f1;

    return a * func(x - 1) + b;
}

int main()
{
    while(scanf("%d%d%d%d", &n, &f1, &a, &b) != EOF)
    {
        cout << func(n) << endl;
    }

    return 0;
}

 注意,输入内容中没有给出数据组数或者结束输入的标志。

7-2 函数的递归调用

#include <iostream>
#include <algorithm>
#include <cstring>

using namespace std;

const int N = 110;

int n;

int func(int x)
{
    if(x == 0 || x == 1) return 1;

    return x * func(x - 1);
}

int main()
{
    cin >> n;

    if(n < 0)
        printf("%d<0,no value!no value!", n);
    else
        printf("%d!=%d", n, func(n));

    return 0;
}

n < 0时那个逗号是全角符号,建议直接复制粘贴。

7-3 A010 递归练习1

#include <iostream>
#include <algorithm>
#include <cstring>

using namespace std;

const int N = 110;

int n, m, k;

int f(int x)
{
    if(x == 1) return k;

    return f(x - 1) + m;
}

int main()
{
    while(scanf("%d%d%d", &n, &m, &k) != EOF)
    {
        cout << f(n) << endl;
    }

    return 0;
}

7-4 A011 递归练习2

#include <iostream>
#include <algorithm>
#include <cstring>

using namespace std;

const int N = 110;

int n, m, t;

int f(int x, int y)
{
    if(y == 1) return x;
    if(x < 0 || y < 0 || x < y) return 0;
    return f(x - 1, y) + f(x - 1, y - 1);
}

int main()
{
    cin >> t;

    while(t--)
    {
        cin >> n >> m;

        cout << f(n, m) << endl;
    }

    return 0;
}

7-5 A012 递归练习3

#include <iostream>
#include <algorithm>
#include <cstring>

using namespace std;

const int N = 110;

int t;

struct Node
{
    int a;
    int b;
}node;

struct Node f(int x)
{
    if(x == 0) return {1, 0};

    struct Node tem = f(x - 1);
    return {tem.b, tem.a * 3 + tem.b * 2};
}

int main()
{

    while(scanf("%d", &t) != EOF)
    {

        node = f(t);

        cout << node.a << ' ' << node.b << endl;
    }

    return 0;
}

7-6 PG009 循环与递归

#include <iostream>
#include <algorithm>
#include <cstring>

using namespace std;

const int N = 110;

int jie(int x)
{
    if(x == 1 || x == 0) return 1;

    return x * jie(x - 1);
}

double f(int x)
{
    if(x == 1) return 1;

    double sign = (x % 2 == 0 ? -1 : 1);

    double res = sign / jie(2 * x - 1);

    return res + f(x - 1);
}

int main()
{
    int n;

    while(scanf("%d", &n) != EOF)
    {
        printf("%.5f\n", f(n));
    }

    return 0;
}

7-7 计算Fibonacci数列—递归

#include <stdio.h>

long Fib(int n);

int count=0;

int main()
{
    int n;
    long f;
    
    scanf("%d", &n);
    
    f = Fib(n);
    
    printf("Fib(%d)=%ld, count=%d\n", n, f, count);
    
    return 0;
}

long Fib(int n)
{
    count++;
    
    if(n == 1 || n == 2) return 1;

    return Fib(n - 1) + Fib(n - 2);
}

7-8 整数转换为字符串

#include <iostream>
#include <algorithm>
#include <cstring>
#include <string>

using namespace std;

string f(int x)
{
    string s;

    if(x >= 0 && x <= 9) return s += '0' + x;

    int tem = x % 10;

    return f(x / 10) += '0' + tem;
}

int main()
{
    int t;
    cin >> t;

    while(t--)
    {
        int x;
        cin >> x;

        string s;
        if(x >= 0) s = f(x);
        else s = '-' + f(-x);

        cout << s << endl;
    }

    return 0;
}

递归函数只对非负整数进行处理,负整数在主函数中另外处理。

7-9 简单的归并

#include <iostream>
#include <algorithm>
#include <cstring>
#include <set>

using namespace std;

multiset<int> box;

int main()
{
    int t;
    cin >> t;

    while(t--)
    {
        box.clear();

        int n, m;

        cin >> n;

        while(n--)
        {
            int x;
            cin >> x;

            box.insert(x);
        }

        cin >> m;

        while(m--)
        {
            int x;
            cin >> x;

            box.insert(x);
        }

        for(set<int>::iterator it = box.begin(); it != box.end(); it++)
        {
            cout << *it;
            if(++it != box.end())
            {
                cout << ' ';
            }
            it--;
        }
        puts("");
    }

    return 0;
}

 这个能递归吗......

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/773039.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

Go语言的发展历史

Go语言的Logo 作为程序员&#xff0c;我们每天会用到大量的编程语言&#xff0c;打开界面会碰到很多logo&#xff0c;在正式学习Go语言之前&#xff0c;我们先来了解一下Go语言的Logo。也就是它,下面这个动物&#xff0c;gopher [ˈɡoʊfər] &#xff0c;囊地鼠&#xff0c;…

TinyKv流程梳理三

split流程 处理协程启动 func (bs *Raftstore) startWorkers(peers []*peer) {ctx : bs.ctxworkers : bs.workersrouter : bs.routerbs.wg.Add(2) // raftWorker, storeWorkerrw : newRaftWorker(ctx, router)go rw.run(bs.closeCh, bs.wg)sw : newStoreWorker(ctx, bs.store…

Java解决new date出现的时区问题(差8小时)

1、设置当前时区 SimpleDateFormat format new SimpleDateFormat("yyyy/MM/dd"); format.setTimeZone(TimeZone.getTimeZone("GMT8:00")); 2、设置全局时区 创建一个全局配置类&#xff0c;用于配置项目全局时区。 这样就不用专门在各个地方设置时区了…

2023年下半年软考高项考试时间及安排

信息系统项目管理师一般情况下分别于上半年5月份和下半年11月份考试&#xff0c;2023年信息系统项目管理师上半年考试时间为2023年5月27日&#xff0c;下半年考试时间为2023年11月4日。 信息系统项目管理师考试报名时间&#xff1a; 下半年8月左右开始&#xff0c;各地区时间不…

【npm】基于vite制作自己的npm包+ts【超详细】

前言 头脑一热想做自己的npm包&#xff0c;但是又无从下手&#xff0c;于是我找到了度娘…看着别人做挺简单&#xff0c;自己上手真难受。一路的坑。注意事项也挺多的&#xff0c;所以我特地详细介绍如何制作自己的npm包&#xff0c;并附上ts类型检测。提升用户体验感。 初次踩…

如何编写高质量的测试计划

1.1目的 简述本计划的目的&#xff0c;旨在说明各种测试阶段任务、人员分配和时间安排、工作规范等。 测试计划在策略和方法的高度说明如何计划、组织和管理测试项目。测试计划包含足够的信息使测试人员明白项目需要做什么是如何运作的。另外&#xff0c;清晰的文档结构能使任…

three.js学习2(基础)

目录 前言&#xff1a; 参考文档&#xff08;gsap使用&#xff09;&#xff1a; 目标一、使物体移动、旋转 Ⅰ、设置时钟方式 Ⅱ、使用gsap 1、安装 2、引入使用 目标二、自适应 目标三、双击全屏或者退出全屏 前言&#xff1a; 上面学习了three.js在页面上的简单显示…

【Java项目实战-牛客社区】--idea maven配置

第一 IDEA集成Maven插件&#xff0c;并配置Maven 以下步骤中&#xff0c;重点关注红色方框的配置 第二 IDEA 创建 Maven 项目 步骤一&#xff1a;创建模块&#xff0c;选择Maven&#xff0c;点击Next 步骤二&#xff1a;填写模块名称&#xff0c;坐标信息&#xff0c;点击finis…

vue2 实现后台管理系统左侧菜单联动实现 tab根据路由切换联动内容,并支持移动端框架

效果图&#xff1a; pc端 移动端 由于代码比较多&#xff0c;我这里就不一一介绍了&#xff0c;可以去我的git上把项目拉下来 git地址https://gitee.com/Flechazo7/htglck.git 后台我是用node写的有需要的可以评论联系

EDM营销过时了?不,这才是跨境电商成功的最佳工具

根据最近的一项研究&#xff0c;电子邮件仍然是最具说服力的营销工具和沟通形式之一。虽然即时通讯等其他渠道正在扎根&#xff0c;但电子邮件仍然是影响最深远的商业交流形式。到2023年&#xff0c;每天发送和接收的电子邮件总数可能会超过333亿封。所以&#xff0c;如果您希望…

Tensorflow和Keras安装流程,jupyter无法使用keras解决方案

Tensorflow和Keras安装流程,jupyter无法使用keras解决方案 1.Base: anaconda https://www.anaconda.com/download 2.安装python3.8&#xff0c;Tensorflow2.13.0&#xff0c;Keras2.13.1 –创建conda环境-在Anaconda Prompt中输入命令&#xff0c; conda create -n tensorfl…

安森美深力科汽车空调自动控制方案,助力推动能效、安全、节能、环保

NCV4266-2CST50T3G 安森美深力科汽车空调自动控制方案&#xff0c;助力推动能效、安全、节能、环保 汽车智能化、自动驾驶、电动汽车/汽车功能电子化等趋势的推进正使汽车变得更加安全、舒适、环保和节能&#xff0c;是创新的关键。为自动驾驶、汽车功能电子化、传统动力总成…

[JavaScript游戏开发] 2D二维地图绘制、人物移动、障碍检测

系列文章目录 第一章 2D二维地图绘制、人物移动、障碍检测 文章目录 系列文章目录前言一、列计划1.1、目标1.2、步骤 二、使用步骤2.1、准备素材(图片)&#xff1a;草坪、人物(熊猫)、障碍(石头)2.2、初始化布局(表格)&#xff0c;边距设置为0&#xff0c;无边框&#xff0c;设…

ASFF Learning Spatial Fusion for Single-Shot Object Detection 论文学习

1. 解决了什么问题&#xff1f; 目标检测取得了显著成绩&#xff0c;但是检测不同尺度的目标仍然是一个挑战。金字塔或多层级特征是解决目标检测中尺度变化的常用手段。但对于单阶段目标检测器而言&#xff0c;各特征尺度之间不一致性制约了算法的表现。与图像金字塔相比&…

Java版知识付费源码 Spring Cloud+Spring Boot+Mybatis+uniapp+前后端分离实现知识付费平台

知识付费平台主要指的是能够通过付费来满足用户知识需求的平台&#xff0c;用户可以通过该平台来消费知识或者开展知识买卖等行为。 此处的平台是一个广义的概念&#xff0c;可以是微信小程序或者论坛&#xff0c;也可以是网页或者手机APP&#xff0c;等&#xff0c;就我国的情…

新东方教育收入前景良好,估值低迷,股票回购令人失望

来源&#xff1a;猛兽财经 作者&#xff1a;猛兽财经 分析师对新东方的收入预测 考虑到新东方&#xff08;EDU&#xff09;的销售指引和卖方分析师的预测&#xff0c;猛兽财经认为&#xff0c;新东方目前的收入增长前景非常好。 根据其财务指引的中点&#xff0c;新东方预计其…

Mysql——》InnoDB内存结构和磁盘存储结构

推荐链接&#xff1a; 总结——》【Java】 总结——》【Mysql】 总结——》【Redis】 总结——》【Kafka】 总结——》【Spring】 总结——》【SpringBoot】 总结——》【MyBatis、MyBatis-Plus】 总结——》【Linux】 总结——》【MongoD…

options 预检测请求

文章目录 产生原因简单请求复杂请求携带了 cookie 情况 优化预检测请求 产生原因 在跨域的情况下&#xff0c;如果浏览器发送的是复杂请求&#xff0c;会先发送一个 OPTIONS 预检测请求&#xff0c;从而获知服务端是否允许该跨域请求。服务器确认允许之后&#xff0c;才发起实…

认识Spring(1)

hi,大家好,今天继续为大家带来Spring的相关内容 文章目录 &#x1f9c1;1.理解Spring和IOC&#x1f9c1;2.DI和DF&#x1f378;2.1什么是DI&#x1f378;2.2什么是DF&#x1f378;2.3DI和DF的区别 &#x1f9c1;3 Spring创建和使用&#x1f378;3.1创建Spring项目&#x1f361…

如何调整Vivado菜单栏字体大小

Vivado整体字体缩放开关 点击齿轮图标Settings 点击齿轮图标Settings Tool Settings下找到Display选项&#xff1a;找到Scaling选项选择User defined即可调整缩放倍率&#xff08;100/125/150/175%…&#xff09;。 点击Apply重启后生效