#include<iostream> using namespace std; typedef struct { int key; }ElemType; typedef struct{ ElemType *elem; int length; }SSTable; //判断a是否等于b int EQ(int a,int b) { if (a == b) return 1; else return 0; } //判断a是否小于b int LT (int a,int b) { if ( a < b) return 1; else return......