• 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. }
  • 相关阅读:
    Java 数组_方法_static关键字
    div+css布局实现个人网页设计(HTML期末作业)
    Java实现计算两个日期之间的工作日天数
    垂直领域大模型落地思考
    数据之道读书笔记-05面向“联接共享”的数据底座建设
    STM32——NVIC中断优先级管理分析
    Hadoop运行模式
    https域名下 请求http图片链接 被自动变成https请求
    GitHub Actions CI/CD 工作流实战
    【云原生】docker+k8微服务容器化实战(下篇)
  • 原文地址:https://blog.csdn.net/weixin_53199925/article/details/126500235