码农知识堂 - 1000bd
  •   Python
  •   PHP
  •   JS/TS
  •   JAVA
  •   C/C++
  •   C#
  •   GO
  •   Kotlin
  •   Swift
  • 1074 Reversing Linked List


    Given a constant K and a singly linked list L, you are supposed to reverse the links of every K elements on L. For example, given L being 1→2→3→4→5→6, if K=3, then you must output 3→2→1→6→5→4; if K=4, you must output 4→3→2→1→5→6.

    Input Specification:

    Each input file contains one test case. For each case, the first line contains the address of the first node, a positive N (≤105) which is the total number of nodes, and a positive K (≤N) which is the length of the sublist to be reversed. The address of a node is a 5-digit nonnegative integer, and NULL is represented by -1.

    Then N lines follow, each describes a node in the format:

    Address Data Next
    

    where Address is the position of the node, Data is an integer, and Next is the position of the next node.

    Output Specification:

    For each case, output the resulting ordered linked list. Each node occupies a line, and is printed in the same format as in the input.

    Sample Input:

    1. 00100 6 4
    2. 00000 4 99999
    3. 00100 1 12309
    4. 68237 6 -1
    5. 33218 3 00000
    6. 99999 5 68237
    7. 12309 2 33218

    Sample Output:

    1. 00000 4 33218
    2. 33218 3 12309
    3. 12309 2 00100
    4. 00100 1 99999
    5. 99999 5 68237
    6. 68237 6 -1

    和乙级的1025一样:1025 反转链表 (25 分)_Brosto_Cloud的博客-CSDN博客 

    Data 和 Next 数组的下标 i 都是地址,表示对应地址的数据和链接的下一个地址,list数组下标 i 是顺序,代表节点地址,每个地址对应的数据都是不变的,改变的只是链接的下一个地址,所以对list 数组每k个进行反转后直接输出 list[i]和list[i+1]就是对应的地址顺序,data[i]是对应的数据。

    1. #include
    2. #include
    3. #include
    4. using namespace std;
    5. int Data[100010], list[100010], Next[100010];
    6. int n, k, addr, t, sum;
    7. int main() {
    8. cin >> addr >> n >> k;
    9. for (int i = 0; i < n; i++) {
    10. cin >> t;
    11. cin >> Data[t] >> Next[t];
    12. }
    13. while (addr != -1) {
    14. list[sum++] = addr;
    15. addr = Next[addr];
    16. }
    17. for (int i = 0; i < (sum - sum % k); i += k) {
    18. reverse(list + i, list + i + k);
    19. }
    20. for (int i = 0; i < sum - 1; i++) {
    21. cout << setfill('0') << setw(5) << list[i] << ' ' << Data[list[i]] << ' ' << setfill('0') << setw(
    22. 5) << list[i + 1] << endl;
    23. }
    24. cout << setfill('0') << setw(5) << list[sum - 1] << ' ' << Data[list[sum - 1]] << ' ' << -1;
    25. return 0;
    26. }
  • 相关阅读:
    html中如何给input输入框这个一个默认值
    Scrapy第八篇:User-Agent中间件
    对比学习系列论文COST(二):
    深入理解Java集合
    PLC学习笔记(二):PLC结构(1)
    基于Or-Tools的线性规划问题求解
    【单片机】UART、I2C、SPI、TTL、RS232、RS422、RS485、CAN、USB、SD卡、1-WIRE、Ethernet等常见通信方式
    【02】ZooKeeper经典应用场景实战一
    上传文件夹里面的文件后,按树结构的table表格展示
    基于golang的swagger超贴心、超详细使用指南【有很多坑】
  • 原文地址:https://blog.csdn.net/weixin_53199925/article/details/126500235
  • 最新文章
  • 攻防演习之三天拿下官网站群
    数据安全治理学习——前期安全规划和安全管理体系建设
    企业安全 | 企业内一次钓鱼演练准备过程
    内网渗透测试 | Kerberos协议及其部分攻击手法
    0day的产生 | 不懂代码的"代码审计"
    安装scrcpy-client模块av模块异常,环境问题解决方案
    leetcode hot100【LeetCode 279. 完全平方数】java实现
    OpenWrt下安装Mosquitto
    AnatoMask论文汇总
    【AI日记】24.11.01 LangChain、openai api和github copilot
  • 热门文章
  • 十款代码表白小特效 一个比一个浪漫 赶紧收藏起来吧!!!
    奉劝各位学弟学妹们,该打造你的技术影响力了!
    五年了,我在 CSDN 的两个一百万。
    Java俄罗斯方块,老程序员花了一个周末,连接中学年代!
    面试官都震惊,你这网络基础可以啊!
    你真的会用百度吗?我不信 — 那些不为人知的搜索引擎语法
    心情不好的时候,用 Python 画棵樱花树送给自己吧
    通宵一晚做出来的一款类似CS的第一人称射击游戏Demo!原来做游戏也不是很难,连憨憨学妹都学会了!
    13 万字 C 语言从入门到精通保姆级教程2021 年版
    10行代码集2000张美女图,Python爬虫120例,再上征途
Copyright © 2022 侵权请联系2656653265@qq.com    京ICP备2022015340号-1
正则表达式工具 cron表达式工具 密码生成工具

京公网安备 11010502049817号