• 【PTA】6-4 链式表的按序号查找 (10分)


    【PTA】6-3 求链式表的表长 (10分)

    函数接口定义:

    ElementType FindKth( List L, int K );

    其中List结构定义如下:

    typedef struct LNode *PtrToLNode;
    struct LNode {
        ElementType Data;
        PtrToLNode Next;
    };
    typedef PtrToLNode List;

    L是给定单链表,函数FindKth要返回链式表的第K个元素。如果该元素不存在,则返回ERROR

    裁判测试程序样例:

    #include <stdio.h>
    #include <stdlib.h>
    
    #define ERROR -1
    typedef int ElementType;
    typedef struct LNode *PtrToLNode;
    struct LNode {
        ElementType Data;
        PtrToLNode Next;
    };
    typedef PtrToLNode List;
    
    List Read(); /* 细节在此不表 */
    
    ElementType FindKth( List L, int K );
    
    int main()
    {
        int N, K;
        ElementType X;
        List L = Read();
        scanf("%d", &N);
        while ( N-- ) {
            scanf("%d", &K);
            X = FindKth(L, K);
            if ( X!= ERROR )
                printf("%d ", X);
            else
                printf("NA ");
        }
        return 0;
    }
    
    /* 你的代码将被嵌在这里 */

    输入样例:

    1 3 4 5 2 -1
    6
    3 6 1 5 4 2

    输出样例:

    4 NA 1 2 5 3 

    函数实现细节:

     1 ElementType FindKth( List L, int K ){
     2     if(L==NULL||K<1)return -1;
     3     while(L&&K>1){
     4         K--;
     5         L=L->Next;
     6     }
     7     if(L==NULL){
     8         return -1;
     9     }else{
    10         return L->Data;
    11     }
    12 }
  • 相关阅读:
    LeetCode(122. 买卖股票的最佳时机 II)
    LeetCode(485. 最大连续1的个数)

    约瑟夫问题
    链表
    队列
    稀疏数组
    乐优商城项目学习
    LeetCode_Climbing Stairs
    数据结构&&算法基础知识
  • 原文地址:https://www.cnblogs.com/wyjgr/p/13073421.html
Copyright © 2020-2023  润新知