Practice Exercises

Below are practical exercises covering key IB Computer Science topics, including recursion, abstract data structures, linked lists, and trees. Try solving these problems to strengthen your understanding of the concepts!

1. Thinking Recursively

Exercise 1: Write a recursive function in Java to compute the nth Fibonacci number.

Exercise 2: Implement a recursive function to calculate the factorial of a number.

2. Abstract Data Structures

Exercise 1: Implement a stack using an array in Java, supporting push, pop, and peek operations.

3. Linked Lists

Exercise: Implement a singly linked list in Java with methods to add and remove nodes.

4. Trees

Exercise: Implement a basic binary search tree (BST) with insertion and in-order traversal.

Keep Practicing!

By practicing these exercises, you will build a solid foundation in key computer science concepts. Try modifying the code, adding additional functionalities, or implementing alternative approaches to reinforce your learning!