• 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. }
  • 相关阅读:
    MySQL 高级(进阶) SQL 语句 (一)
    计算机竞赛 深度学习YOLOv5车辆颜色识别检测 - python opencv
    Maven——分模块开发与设计(重点)
    webpack-theme-color-replacer动态修改Ant Design Vue主题色
    这些编程语言你需要了解一下
    0930样式迁移(Style Transfer)
    linux 系统被异地登录,cpu占用拉满100%
    617以及assura使用总结
    龙芯推出兼容IE浏览器解决方案
    uniapp中 background-image 设置背景图片不展示问题
  • 原文地址:https://blog.csdn.net/weixin_53199925/article/details/126500235