Data Structures and Algorithms Lecture Notes

27 April 2011 • Hashing In Practice


Unique words determined by the uwds shell script:

cat $1 |
sed 's/[[:space:]][[:space:]]*/\n/g' \
sed 's/^[^[:alpha:]][^[:alpha:]]*//' \
    -e 's/[^[:alpha:]][^[:alpha:]]*$//' |
sort | 
uniq


This page last modified on 2006 January 24.