{
  "title": "CS5040 Intermediate Data Structures & Algorithms",
  "desc": "CS5040 Intermediate Data Structures & Algorithms",
  "build_dir": "Books",
  "code_dir": "SourceCode/",
  "lang": "en",
  "code_lang": {
    "Java": {
      "ext": [
        "java"
      ],
      "label": "Java",
      "lang": "java"
    },
    "Java_Generic": {
      "ext": [
        "java"
      ],
      "label": "Java (Generic)",
      "lang": "java"
    },
    "C++": {
      "ext": [
        "cpp",
        "h"
      ],
      "label": "C++",
      "lang": "C++"
    }
  },
  "build_JSAV": false,
  "build_cmap": true,
  "suppress_todo": true,
  "dispModComp": true,
  "zeropt_assignments": false,
  "include_tree_view": false,
  "tabbed_codeinc": true,
  "narration_enabled": true,
  "glob_exer_options": {
    "JXOP-debug": "false"
  },
  "glob_ss_options": {
    "required": false,
    "points": 0,
    "threshold": 1
  },
  "glob_ka_options": {
    "required": true,
    "points": 1,
    "threshold": 5
  },
  "glob_pe_options": {
    "required": true,
    "points": 2,
    "threshold": 0.9
  },
  "glob_ff_options": {
    "required": false,
    "points": 0,
    "threshold": 1
  },
  "glob_extr_options": {
    "points": 1,
    "code-workout": {
      "points": 2
    }
  },
  "max_toc_depth": {
    "points": 3
  },
  "chapters": {
    "Preface": {
      "Intro": {}
    },
    "Introduction for Data Structures and Algorithms Courses": {
      "Background/IntroDSA": {},
      "Design/ADT": {
        "IntroADTSumm": {
          "threshold": 4
        }
      }
    },
    "Object Oriented Programming": {
      "Design/IntroOO": {},
      "Design/IntroUML": {},
      "Design/IntroProcess": {}
    },
    "Programming Tutorials": {
      "Tutorials/cmdline": {},
      "Tutorials/parameters": {},
      "Tutorials/eclipseparameters": {},
      "Tutorials/webcattools": {},
      "Tutorials/debugmethods": {},
      "Tutorials/debug": {},
      "Tutorials/scanning": {},
      "Tutorials/randomaccessfile": {},
      "Tutorials/junitstart": {},
      "Tutorials/junitbasic": {},
      "Tutorials/junitcoverage": {},
      "Testing/TestIntro": {},
      "Testing/TestCoverage": {
        "TriangleApplet": {
          "exer_options": {
            "code": "true"
          }
        }
      },
      "Testing/Example2": {},
      "Testing/Bowling": {
        "BowlingApplet": {
          "exer_options": {
            "code": "true"
          }
        }
      }
    },
    "Mathematical Background": {
      "Background/MathpreIntro": {},
      "Background/SetDef": {
        "SetTFequivrel": {
          "threshold": 3
        },
        "SetTFpartialorder": {
          "threshold": 3
        },
        "SetTFrelation": {
          "points": 2
        }
      },
      "Background/MiscMath": {},
      "Background/Logarithms": {
        "MathLogSumm": {
          "points": 2,
          "threshold": 10
        }
      },
      "Background/Summations": {},
      "Background/RecurrenceIntro": {},
      "Background/Proofs": {},
      "Background/Estimation": {},
      "Background/MathpreSumm": {}
    },
    "Algorithm Analysis": {
      "AlgAnal/AnalChap": {},
      "AlgAnal/AnalPrelim": {
        "AnalPrelimSumm": {
          "threshold": 4
        }
      },
      "AlgAnal/AnalIntro": {
        "CompareGrowth": {
          "points": 2,
          "threshold": 3
        },
        "GrowthRatesPRO": {
          "threshold": 3
        }
      },
      "AlgAnal/AnalCases": {},
      "AlgAnal/AnalCompvsAlg": {
        "FasterCorASumm": {
          "threshold": 2
        }
      },
      "AlgAnal/AnalAsymptotic": {
        "UpperBoundsSumm": {
          "threshold": 4
        }
      },
      "AlgAnal/AnalLower": {
        "LowerThetaSumm": {
          "points": 2
        }
      },
      "AlgAnal/AnalProgram": {
        "binarySearchPRO": {
          "exer_options": {
            "JXOP-code": "none"
          },
          "points": 1,
          "threshold": 1
        }
      },
      "AlgAnal/AnalProblem": {},
      "AlgAnal/AnalMisunderstanding": {
        "MisSumm": {
          "threshold": 4
        }
      },
      "AlgAnal/AnalMultiple": {},
      "AlgAnal/AnalSpace": {},
      "AlgAnal/AnalTuning": {},
      "AlgAnal/AlgAnalSummCS3": {}
    },
    "Introduction to Pointers in Java": {
      "PointersJava/PointerIntro": {},
      "PointersJava/BasicPointers1": {},
      "PointersJava/BasicPointers2": {
        "PointerEX2PRO": {
          "threshold": 1
        },
        "PointerEX1PRO": {
          "threshold": 1
        }
      },
      "PointersJava/Syntax": {},
      "PointersJava/LocalMem": {},
      "PointersJava/HeapMem": {},
      "PointersJava/Links1": {
        "PointerEX3PRO": {
          "threshold": 1
        }
      },
      "PointersJava/Links2": {},
      "PointersJava/PointersCM": {},
      "PointersJava/Exercises": {}
    },
    "Linear Structures": {
      "List/ListIntro": {},
      "List/ListADT": {
        "List ADT Programming Exercise": {
          "points": 1
        }
      },
      "List/ListArray": {
        "AlistRemovePRO": {
          "threshold": 4
        },
        "AlistInsertPRO": {
          "threshold": 3
        },
        "ALSumm": {
          "threshold": 3
        }
      },
      "List/ListLinked": {
        "LlistRemovePRO": {
          "points": 2
        }
      },
      "List/ListAnalysis": {
        "ListOverhead": {
          "threshold": 3
        },
        "LLSumm": {
          "points": 2,
          "threshold": 6
        }
      },
      "List/ListDouble": {},
      "List/ListElement": {
        "ListSumm": {
          "threshold": 3
        }
      },
      "List/StackArray": {},
      "List/StackLinked": {},
      "List/Freelist": {},
      "List/StackRecur": {},
      "List/Queue": {},
      "List/QueueLinked": {},
      "List/ListSumm": {
        "ListChapterSumm": {
          "points": 2,
          "threshold": 10
        },
        "ListdsSumm": {
          "points": 2
        }
      }
    },
    "Recursion": {
      "RecurTutor/RecIntro": {},
      "RecurTutor/Write": {},
      "RecurTutor/CodeCompletionEx": {
        "Recursion Programming Exercise: Add odd values": {
          "points": 1
        },
        "Recursion Programming Exercise: Count Characters": {
          "points": 1
        },
        "Recursion Programming Exercise: Cummulative Sum": {
          "points": 1
        },
        "Recursion Programming Exercise: GCD": {
          "points": 1
        },
        "Recursion Programming Exercise: Largest": {
          "points": 1
        },
        "Recursion Programming Exercise: Multiply": {
          "points": 1
        },
        "Recursion Programming Exercise: Sum Of the Digits": {
          "points": 1
        },
        "Recursion Programming Exercise: log": {
          "points": 1
        }
      },
      "RecurTutor/HarderWrite": {},
      "RecurTutor/HarderCodeCompletionEx": {
        "Recursion Programming Exercise: Decimal to Binary": {
          "points": 1
        },
        "Recursion Programming Exercise: Is Reverse": {
          "points": 1
        },
        "Recursion Programming Exercise: Minimum of array": {
          "points": 1
        }
      },
      "RecurTutor/WritingEx": {
        "Recursion Programming Exercise: Cannonballs": {
          "points": 1
        },
        "Recursion Programming Exercise: Check Palindrome": {
          "points": 1
        },
        "Recursion Programming Exercise: Pascal Triangle": {
          "points": 1
        },
        "Recursion Programming Exercise: Subset Sum": {
          "points": 1
        }
      },
      "RecurTutor/Trace": {},
      "RecurTutor/TracingEx": {
        "RecTraceSummbckwrdFlow": {
          "threshold": 1
        },
        "RecTraceSummFuncErr": {
          "threshold": 1
        },
        "RecTraceSummFwdFlow": {
          "threshold": 1
        },
        "RecTraceSummHard": {
          "threshold": 1
        },
        "RecTraceSummHowmany": {
          "threshold": 1
        },
        "RecTraceSummTwoRC": {
          "threshold": 1
        }
      },
      "RecurTutor/RecSummaryEx": {}
    },
    "Design": {
      "Design/DesignPatterns": {
        "DesignPatternSumm": {
          "threshold": 4
        }
      },
      "Design/DesignAltList": {},
      "Design/Comparison": {},
      "Design/Dictionary": {
        "DesignDictionarySumm": {
          "threshold": 3
        }
      }
    },
    "Binary Trees": {
      "Binary/BinaryTreeIntro": {},
      "Binary/BinaryTree": {
        "DefSumm": {
          "points": 2,
          "threshold": 8
        },
        "Treeprobs": {
          "threshold": 4
        }
      },
      "Binary/RecursiveDS": {},
      "Binary/BinaryTreeFullThm": {},
      "Binary/BinaryTreeTraversal": {
        "btTravPreorderPRO": {
          "exer_options": {
            "JXOP-code": "none"
          },
          "points": 1
        },
        "btTravInorderPRO": {
          "exer_options": {
            "JXOP-code": "none"
          },
          "points": 1
        },
        "btTravPostorderPRO": {
          "exer_options": {
            "JXOP-code": "none"
          },
          "points": 1
        },
        "TravSumm": {
          "threshold": 3
        }
      },
      "Binary/WritingTraversals": {},
      "BTRecurTutor/BinaryTreeInfFlw": {},
      "Binary/BinaryTreeImpl": {},
      "Binary/Composite": {},
      "Binary/BinaryTreeNodeSpace": {
        "TreeOverheadFIB": {
          "points": 2
        }
      },
      "Binary/BST": {
        "BSTSumm": {
          "threshold": 2
        },
        "BSTinsertPRO": {
          "exer_options": {
            "JXOP-code": "none",
            "JXOP-feedback": "continuous",
            "JXOP-fixmode": "undo"
          },
          "points": 1
        },
        "BSTremovePRO": {
          "exer_options": {
            "JXOP-code": "none",
            "JXOP-feedback": "continuous",
            "JXOP-fixmode": "undo"
          }
        },
        "BSTsearchPRO": {
          "exer_options": {
            "JXOP-code": "none",
            "JXOP-feedback": "continuous",
            "JXOP-fixmode": "undo"
          },
          "points": 1
        }
      },
      "Binary/BSTDict": {},
      "BTRecurTutor/BinaryTreeGuidedInfFlw": {},
      "BTRecurTutor/MultipleBinaryTrees": {},
      "BTRecurTutor/BSTCheck": {},
      "Binary/CompleteTree": {},
      "Binary/Heaps": {
        "heapbuildPRO": {
          "exer_options": {
            "JXOP-code": "none"
          },
          "points": 1
        },
        "heapinsertPRO": {
          "exer_options": {
            "JXOP-code": "none"
          }
        },
        "HeapSumm": {
          "points": 2
        },
        "heapremovePRO": {
          "exer_options": {
            "JXOP-code": "none"
          }
        }
      },
      "Binary/Huffman": {},
      "Binary/TreeTrie": {},
      "Binary/HuffProof": {},
      "Binary/BinaryChapSumm": {
        "BinaryChapSumm": {
          "points": 2,
          "threshold": 10
        }
      }
    },
    "Sorting": {
      "Sorting/InSort": {},
      "Sorting/SortNotation": {
        "SortIntroSumm": {
          "threshold": 3
        }
      },
      "Sorting/InsertionSort": {},
      "Sorting/BubbleSort": {
        "BubsortPRO": {
          "points": 2,
          "threshold": 3
        }
      },
      "Sorting/SelectionSort": {
        "SelsortPRO": {
          "points": 2
        }
      },
      "Sorting/ExchangeSort": {
        "FindInversionsPRO": {
          "points": 2
        }
      },
      "Sorting/SortOpt": {
        "insertionSortWithoutSwapPRO": {
          "exer_options": {
            "JXOP-code": "none"
          },
          "points": 0
        }
      },
      "Sorting/Shellsort": {
        "shellsortPerf": {
          "threshold": 1
        },
        "shellsortPRO": {
          "exer_options": {
            "JXOP-feedback": "continuous",
            "JXOP-fixmode": "fix"
          }
        }
      },
      "Sorting/Mergesort": {
        "mergesortPRO": {
          "exer_options": {
            "JXOP-feedback": "continuous",
            "JXOP-fixmode": "fix"
          }
        }
      },
      "Sorting/MergesortImpl": {},
      "Sorting/Quicksort": {
        "quicksortPRO": {
          "exer_options": {
            "JXOP-feedback": "continuous",
            "JXOP-fixmode": "fix"
          }
        }
      },
      "Sorting/Heapsort": {
        "HeapsortStepPRO": {
          "points": 2
        },
        "heapsortPRO": {
          "exer_options": {
            "JXOP-feedback": "continuous",
            "JXOP-fixmode": "fix"
          }
        }
      },
      "Sorting/BinSort": {},
      "Sorting/RadixSort": {
        "RadixsortPRO": {
          "points": 2,
          "threshold": 4
        }
      },
      "Sorting/SortingEmpirical": {},
      "Sorting/SortingLowerBound": {
        "SortBoundSumm": {
          "threshold": 4
        }
      },
      "Sorting/SortSumm": {
        "SortChapterSumm": {
          "points": 2,
          "threshold": 10
        }
      }
    },
    "File Processing": {
      "Files/FileProc": {},
      "Files/Secondary": {},
      "Files/Diskdrive": {},
      "Files/BuffPool": {},
      "Files/FileProg": {},
      "Files/ExternalSort": {
        "extRSPRO": {
          "points": 1,
          "threshold": 1
        },
        "extMultiMergePRO": {
          "points": 1
        }
      }
    },
    "Hashing": {
      "Hashing/HashIntro": {},
      "Hashing/HashFunc": {
        "BirthdayFIB": {
          "threshold": 3
        }
      },
      "Hashing/HashFuncExamp": {
        "StringSimple": {
          "points": 0.5,
          "threshold": 1
        },
        "MidSquare": {
          "points": 0.5,
          "threshold": 1
        },
        "StringSfold": {
          "points": 0.5,
          "threshold": 1
        }
      },
      "Hashing/OpenHash": {
        "OpenHashPRO": {
          "points": 2
        }
      },
      "Hashing/BucketHash": {},
      "Hashing/HashCSimple": {},
      "Hashing/HashCImproved": {
        "HashDoublePPRO": {
          "points": 2
        },
        "HashLinearStepPPRO": {
          "points": 2
        },
        "HashPseudoRandomPPRO": {
          "points": 2
        },
        "HashQuadraticPPRO": {
          "points": 2
        }
      },
      "Hashing/HashAnal": {},
      "Hashing/HashDel": {
        "HashDelSumm": {
          "threshold": 3
        }
      },
      "Hashing/HashSumm": {
        "HashChapterSumm": {
          "points": 2,
          "threshold": 10
        }
      }
    },
    "Memory Management": {
      "MemManage/MemmanIntro": {},
      "MemManage/Dynamic": {},
      "MemManage/SequentialFit": {},
      "MemManage/FirstFit": {
        "firstFitPRO": {
          "exer_options": {
            "JXOP-code": "none",
            "JXOP-feedback": "continuous",
            "JXOP-fixmode": "undo"
          }
        }
      },
      "MemManage/CircularFit": {},
      "MemManage/BestFit": {},
      "MemManage/WorstFit": {},
      "MemManage/MMPerformance": {},
      "MemManage/Buddy": {},
      "MemManage/Garbage": {}
    },
    "Indexing": {
      "Indexing/IndexIntro": {},
      "Indexing/LinearIndexing": {},
      "Indexing/ISAM": {},
      "Indexing/TreeIndexing": {},
      "Indexing/TwoThreeTree": {},
      "Indexing/BTree": {
        "bPlusTreeInsertPRO": {
          "exer_options": {
            "JXOP-feedback": "continuous"
          }
        }
      },
      "Indexing/IndexingSumm": {
        "IndexChoice": {
          "points": 2
        }
      }
    },
    "Graphs": {
      "Graph/GraphIntro": {
        "GraphIntroSumm": {
          "points": 3,
          "threshold": 10
        },
        "GspaceCalcSumm": {
          "points": 2
        }
      },
      "Graph/GraphImpl": {},
      "Graph/GraphTraversal": {},
      "Graph/GraphTopsort": {},
      "Graph/GraphShortest": {},
      "Graph/MCST": {},
      "Graph/Kruskal": {},
      "Graph/Floyd": {},
      "Graph/GraphCM": {}
    },
    "General Trees": {
      "General/GenTreeIntro": {},
      "General/UnionFind": {},
      "General/SequentialRep": {}
    },
    "Advanced Data Structures": {
      "SearchStruct/SkipList": {},
      "Spatial/Spatial": {},
      "Spatial/PRquadtree": {},
      "Spatial/KDtree": {},
      "Spatial/Bintree": {},
      "Spatial/OtherSpatial": {}
    },
    "Appendix": {
      "Glossary": {},
      "Bibliography": {}
    }
  }
}
