Computer Algorithms II Lecture Notes

13 November 2007 • 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 24 January 2006.