void InsertFirst(int R, Entry * &H) { Entry *e ; e = new Entry ; e->Data = R ; e->Next = H ; H = e ; }