数据结构之算法2.6-在顺序线性表L中查找第1个值与e满足compare()的元素的位序

  • Post author:
  • Post category:其他


//============================================================================
// Name        :algorithm2_6.cpp
// Author      :Gao_Xiong
// Version     :Visual Studio2012
// Copyright   : all rights reserved
// Description : 在顺序线性表L中查找第1个值与e满足compare()的元素的位序
//              若找到,则返回其在L中的位序,否则返回0
//============================================================================

#include <iostream>
#include<cstdlib>
#include<cstdio>
using namespace std;

#define LIST_INIT_SIZE 100    //线性存储空间的初始分量
#define  LISTINCREMENT 10 //线性表存储空间的分配增量
typedef  int ElemType;

struct SqList{
    ElemType *el



版权声明:本文为Gao__Xiong原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。