home *** CD-ROM | disk | FTP | other *** search
- Newsgroups: comp.lang.c
- Path: sparky!uunet!ulowell!ulowell.ulowell.edu!emakris
- From: emakris@cs.ulowell.edu (Ernie Makris)
- Subject: Linked List
- Message-ID: <EMAKRIS.92Nov20120636@cs.ulowell.edu>
- Sender: usenet@ulowell.ulowell.edu (News manager - ulowell)
- Organization: /usr/u/guest/emakris/.organization
- Distribution: comp
- Date: Fri, 20 Nov 1992 17:06:36 GMT
- Lines: 14
-
- Hello,
- I am recently having trouble sorting a linked list.
- The structure is:
- struct list {
- char last_name[15], first_name[15];
- struct list *next;
- };
- I want to be able to sort by last name. Demonstration code would
- be appreciated.
- Thanks
- Ernie Makris
- P.S.
- Please e-mail me @
- makrise@woods.ulowell.edu
-