aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrea Smith <smit9523@umn.edu>2020-10-05 23:11:15 -0500
committerAndrea Smith <smit9523@umn.edu>2020-10-05 23:11:15 -0500
commit1949292a259bb0ea8ec731b8df90a8b06fa7df20 (patch)
tree78ba340197dbc73ce21571e59316b9f769e8abc6
parentFormat README (diff)
downloadcsci4061-1949292a259bb0ea8ec731b8df90a8b06fa7df20.tar
csci4061-1949292a259bb0ea8ec731b8df90a8b06fa7df20.tar.gz
csci4061-1949292a259bb0ea8ec731b8df90a8b06fa7df20.tar.bz2
csci4061-1949292a259bb0ea8ec731b8df90a8b06fa7df20.tar.lz
csci4061-1949292a259bb0ea8ec731b8df90a8b06fa7df20.tar.xz
csci4061-1949292a259bb0ea8ec731b8df90a8b06fa7df20.tar.zst
csci4061-1949292a259bb0ea8ec731b8df90a8b06fa7df20.zip
Format README
-rw-r--r--P1/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/P1/README.md b/P1/README.md
index e1374cc..2eaec00 100644
--- a/P1/README.md
+++ b/P1/README.md
@@ -14,7 +14,7 @@ The purpose of this program is to recreate the mapreduce programming model for B
```mapreduce.c:```
Mapreduce is the master phase of this program. It is responsible for calling the mapper and reducer processes. It will wait for each process to finish executing before exiting the code.
-````mapper.c:```
+```mapper.c:```
Mapper receives a chunk of data and emits it into an intermediate data structure, which is a two-level linked list. writeIntermediateDS() formats the data, writing each word and its associated "1's" in the form "word 1 1 1..." to its own file, word.txt.
```reducer.c:```