notes

Personal notes
git clone git://git.laack.co/notes.git
Log | Files | Refs

LexicographicOrdering.md (248B)


      1 # Lexicographic Ordering
      2 
      3 Ch 9.6
      4 
      5 **Definition:** Lexicographic ordering is the same as alphabetic ordering.
      6 
      7 Consider the case of (1, 1, 100), (1,4), (2,1), (2,2), (2,0)
      8 
      9 In lexicographic order we see that (1,1,100) (1,4) < (2,0) < (2,1) < (2,2).