Written by students who passed Immediately available after payment Read online or as PDF Wrong document? Swap it for free 4,6 TrustPilot
logo-home
Exam (elaborations)

CS 300 – Analysis & Design | Assignment 5-2 – Binary Search Tree |SNHU| – Pseudocode, Reflection, and Complete C++ Code

Rating
-
Sold
-
Pages
14
Grade
A
Uploaded on
28-12-2025
Written in
2025/2026

This document covers CS 300 Assignment 5-2 and focuses on implementing a binary search tree (BST) to manage bid data loaded from a CSV file. It includes detailed pseudocode, a reflective analysis, and full C++ source code demonstrating insertion, searching, traversal, and removal operations while maintaining BST order. The assignment emphasizes recursion, pointer safety, and efficient data organization using tree-based structures.

Show more Read less
Institution
Analysis & Design
Course
Analysis & Design

Content preview

Assignment 5-2 Binary Search Tree

1. Pseudocode

Insert(bid)

IF root is NULL:

root ← new Node(bid)

ELSE:

CALL addNode(root, bid)

addNode(node, bid)

IF bid.key < node.key:

IF node.left is NULL:

node.left ← new Node(bid)

ELSE:

CALL addNode(node.left, bid)

ELSE:

IF node.right is NULL:

node.right ← new Node(bid)

ELSE:

CALL addNode(node.right, bid)

Search(bidKey)

current ← root

WHILE current is NOT NULL:

IF bidKey == current.key:

RETURN current.bid

ELSE IF bidKey < current.key:

current ← current.left

ELSE:

, current ← current.right

RETURN NULL

Remove(bidKey)

CALL removeNode(root, bidKey)

removeNode(node, bidKey)

IF node is NULL:

RETURN node

IF bidKey < node.key:

node.left ← removeNode(node.left, bidKey)

ELSE IF bidKey > node.key:

node.right ← removeNode(node.right, bidKey)

ELSE:

IF node.left is NULL AND node.right is NULL:

DELETE node

RETURN NULL

IF node.left is NULL:

temp ← node.right

DELETE node

RETURN temp

IF node.right is NULL:

temp ← node.left

DELETE node

RETURN temp

temp ← findMin(node.right)

node.key ← temp.key

node.bid ← temp.bid

Written for

Institution
Analysis & Design
Course
Analysis & Design

Document information

Uploaded on
December 28, 2025
Number of pages
14
Written in
2025/2026
Type
Exam (elaborations)
Contains
Questions & answers

Subjects

R226,55
Get access to the full document:

Wrong document? Swap it for free Within 14 days of purchase and before downloading, you can choose a different document. You can simply spend the amount again.
Written by students who passed
Immediately available after payment
Read online or as PDF


Document also available in package deal

Get to know the seller

Seller avatar
Reputation scores are based on the amount of documents a seller has sold for a fee and the reviews they have received for those documents. There are three levels: Bronze, Silver and Gold. The better the reputation, the more your can rely on the quality of the sellers work.
TestbanksNerd Ohio State University College Of Medicine
Follow You need to be logged in order to follow users or courses
Sold
116
Member since
1 year
Number of followers
0
Documents
469
Last sold
2 days ago
TestBanks Nerd

Welcome to TestBanks Nerd – the ultimate hub for academic resources. Here, you’ll find a wide selection of test banks, solution manuals, study notes, lecture summaries, practice exams, and past papers carefully curated to help students succeed. Whether you’re preparing for an exam, revising core concepts, or looking for step-by-step solutions, this store provides accurate, reliable, and exam-focused materials across multiple subjects and editions. At TestBanks Nerd, we make studying smarter, faster, and easier.

Read more Read less
3,4

16 reviews

5
6
4
2
3
3
2
2
1
3

Trending documents

Recently viewed by you

Why students choose Stuvia

Created by fellow students, verified by reviews

Quality you can trust: written by students who passed their exams and reviewed by others who've used these notes.

Didn't get what you expected? Choose another document

No worries! You can immediately select a different document that better matches what you need.

Pay how you prefer, start learning right away

No subscription, no commitments. Pay the way you're used to via credit card or EFT and download your PDF document instantly.

Student with book image

“Bought, downloaded, and aced it. It really can be that simple.”

Alisha Student

Frequently asked questions