The WordCount and Sort examples demonstrate basic MapReduce algorithms in Hadoop. WordCount counts the frequency of words in a text document by having mappers emit (word, 1) pairs and reducers sum the counts. Sort uses an identity mapper and reducer to simply sort the input files by key. Both examples read from and write to HDFS, and can be run on large datasets to benchmark a Hadoop cluster's sorting performance.