Draw the following fractal consists of capital ‘I’s. Source Code:
Draw the following fractal consists of capital ‘I’s. Source Code:
Animate the transition from Sierpinski Triangle tree to Fractal tree as shown. This project is related to Sierpinski Triangle and Fractal Tree. Source Code:
Draw the following fractal tree with recursion. This project is related to Sierpinski Triangle Tree. Source Code:
Use recursion to draw the following Sierpinski Triangle the similar method to drawing a fractal tree. Source Code:
Use minimax tree search algorithm with alpha-beta pruning to write AI Tic-Tac-Toe player. You may also want to add randomness to your AI player so that it won’t play the
24 Game is a mathematical puzzle that make 4 numbers make evaluate to 24 with basic arithmetical operators ( +, -, ×, ÷). For example, given 4 numbers 1,5,5,5, we
Draw the following shape of triangles with recursion.
Draw the following square snowflake with recursion. Source Code:
Merge Sort algorithm is fast but it requires additional array and additional copying. Quick Sort is even faster than Merge Sort. Implement Quick Sort algorithm and animate it! Here is
In previous sorting animations, we animated selection, insertion, and bubble sort. They are slow O(n^2) slow sorting algorithm. Merge Sort, a divide and conquer algorithm, is a much faster sorting