zoukankan      html  css  js  c++  java
  • 链式表的按序号查找

    本题要求实现一个函数,找到并返回链式表的第K个元素。

    函数接口定义:

    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 
    
     
    AC code:
    ElementType FindKth( List L, int K ){
        if(L==NULL) return ERROR;   
        while(--K){                         //往后移动K-1次,查找第K个元素 
            if(L->Next==NULL) return ERROR; //若K大于链表的长度,返回ERROR 
            else L=L->Next;
        }
        return L->Data;                     //返回第K个元素 
    }
    永远渴望,大智若愚(stay hungry, stay foolish)
  • 相关阅读:
    《将博客搬至CSDN》
    Ubuntu 安装 maven
    Ubuntu jdk1.8安装
    spring整合jms
    jms入门
    MySQL 3306端口开启
    黑窗口下mysql导出导入数据库
    PHP 爬虫体验(三)
    解决nvm安装的node使用sudo npm报错的问题
    PHP 爬虫体验(二)
  • 原文地址:https://www.cnblogs.com/h-hkai/p/9700631.html
Copyright © 2011-2022 走看看