Build a sorted double-linked list such that you can go around the list either way to print the ordered list forward or in reverse. For example, you build a list of characters, then you can print it out as: "a b c d e" or "e d c b a". The input is of an random character list is from the keyboard.