单链表 查找函数自动生成宏

#define DEFINE_SINGLE_LIST_LOOKUP_FUN(the_func_name, node_type,x,...)          \
node_type * the_func_name(node_type * the_list, node_type * the_ele)          \
{                                                                             \
    node_type * tmp = the_list;                                               \
    while(tmp) {                                                              \
        if(__STD_PARAM##x(__VA_ARGS__)) {                                       \
            return tmp;                                                       \
        }                                                                     \
        tmp = tmp->next;                                                       \
    }                                                                         \
    return NULL;                                                              \
}

#define __STD_PARAM1(t1)    (tmp->t1==the_list->t1)
#define __STD_PARAM2(t2, ...) (tmp->t2==the_list->t2)&&__STD_PARAM1(__VA_ARGS__)
#define __STD_PARAM3(t3, ...) (tmp->t3==the_list->t3)&&__STD_PARAM2(__VA_ARGS__)
#define __STD_PARAM4(t4, ...) (tmp->t4==the_list->t4)&&__STD_PARAM3(__VA_ARGS__)
#define __STD_PARAM5(t5, ...) (tmp->t5==the_list->t5)&&__STD_PARAM4(__VA_ARGS__)
#define __STD_PARAM6(t6, ...) (tmp->t6==the_list->t6)&&__STD_PARAM5(__VA_ARGS__)

DEFINE_SINGLE_LIST_LOOKUP_FUN(single_list_test, SingleListType, 2,index,id);

你可能感兴趣的:(杂谈)