数据结构-求两集合的差集

数据结构-两集合的差集

//
// Created by zhang on 2021/10/27.
//
#include "stdio.h"

typedef struct {
   
    int data[20];
    int length;
} list;

// 查找线性表L中是否有e这个元素 如果有 返回这个元素在线性表中的位置(下角标+1)
// 如果没有 返回0
int LocateElem(list L,int e){
   
    for (int i = 0; i < L.length; ++i) {
   
        if(L.data[i] == e){
   
            return i+1;
        }
    }
    return 0

你可能感兴趣的:(数据结构,数据结构,链表)