CMSC 420 B-Trees


CMSC 420: Coding Project 3
B-Trees
1 Due Date and Time
Due to Gradescope by Sunday 29 October at 11:59pm. You can submit as many times as you wish
before that.
2 Get Your Hands Dirty!
This document is intentionally brief and much of what is written here will be more clear once you
start looking at the provided files and submitting.
3 Assignment
We have provided the template btree.py which you will need to complete. More specifically you
will fill in the code details to manage insertion, deletion, and search for a very slight modification
of a B-tree. This modification is clarified in the Order of Operations section below.
As a slight change from the previous two projects we have implemented a Btree class as well as
a Node class. The Btree class stores only the m value as well as a pointer to the root Node. The
insert, delete, and search functions are then implemented as methods of the btree class.
As is noted in the btree.py template you are welcome to make minor augmentations to the Node
class. For example we have included a parent pointer but you can delete this if you don’t use it.
Please look at this file as soon as possible.
4 Details
The functions should do the following:
• def insert(self, key: int, value: str):
Insert the key-value pair into the tree and rebalance as per instructions below. The key is
guaranteed not to be in the tree.
• def delete(self, key: int):
Delete the key-value pair associated to the key from the tree and rebalance as per instructions
below. The key is guaranteed to be in the tree.
1
• def search(self, key: int):
Calculate the list of child indices followed on the path from the root to the node which includes
the key with the associated value appended at the end. If the key is in the root, return a list
containing just the associated value. The key is guaranteed to be in the tree.
5 Order of Operations
For insertion, follow these steps when correcting an overfull node. Note that the first two are a bit
different from a standard B-tree:
1. First see if a left sibling exists and has space. If so then let T be the total number of keys in
the overfull node plus the left sibling and left rotate until the overfull node is down to dT /2e
keys.
2. Second see if a right sibling exists and has space. If so then let T be the total number of keys
in the overfull node plus the right sibling and right rotate until the overfull node is down to
dT /2e keys.
3. Split.
For deletion, follow these steps when correcting an underfull node: Note that the first two are a bit
different from a standard B-tree:
1. First see if a left sibling exists and has space. If so then let T be the total number of keys in
the underfull node plus the left sibling and right rotate until the underfull node is up to bT /2c
keys.
2. Second see if a right sibling exists and has space. If so then let T be the total number of keys
in the underfull node plus the right sibling and left rotate until the underfull node is up to
bT /2c keys.
3. Merge with left sibling if possible.
4. Merge with right sibling if possible.
6 Additional Functions
You will probably want some helper functions as well as Btree class methods to handle the rotations,
merging, and splitting.
7 What to Submit
You should only submit your completed btree.py code to Gradescope for grading. We suggest that
you begin by uploading it as-is (it will run!), before you make any changes, just to see how the
autograder works and what the tests look like. Please submit this file as soon as possible.
2
8 Testing
This is tested via the construction and processing of tracefiles.
• The first line in the tracefile is initialize,m which should initialize an instance of the Btree
class with m and with root node None.
• Each remaining non-final line in a tracefile is either insert,key,value or delete,key. All
together these lines result in the creation of a B-tree.
• The final line is either dump or search,key.
You can see some examples by submitting the btree.py file as-is.
9 Local Testing
We have provided the testing file test_btree.py which you can use to test your code locally. Simply
put the lines from a tracefile (either from the autograder or just make one up) into a file whatever
WX:codehelp

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值