[em18]
Complete the implementation of the Linear List ADT using the following structure:
struct_T_linear_list {
             int a_len
             elem_t a[MAXSIZE]
  };

For function locate,it should return out-of-range position to indicate that the desired item is not found.

谢谢各位高手 这题怎么做?