Computing Society: Session 3 Functions, Modules, and Data Structure
Session 3: Functions, Modular Programming, and Data Structures π₯οΈπ‘
Total Duration: 60 minutes β³
Goal: Students will understand functions, modular programming, and basic data structures (lists, dictionaries, and arrays) in both Python π and C++ π». They will apply this knowledge by building modular programs and manipulating data structures.
3.1 Understanding Functions π
Time Allocation: 15 minutes β°
Concept Explanation:
What are Functions? βοΈ
A function is a block of organized, reusable code that performs a specific task. It helps break down programs into smaller, manageable sections, improving readability and reducing code repetition.Mechanism: π§
When a function is called, the program jumps to that function, performs its task, and returns control to the calling code, optionally with a result (return value). Functions can accept inputs (arguments) and return outputs.In Python π: Functions are defined using the
def
keyword, and return values with thereturn
statement.In C++ π»: Functions are defined with a return type, function name, and parameters. C++ functions specify the type of value they return.
Simple Task (for noobs) πΆ
- Python π: Write a function that takes a userβs name as input and prints a greeting.
1
2
3
4def greet(name):
print(f"Hello, {name}!")
greet("Alice") - C++ π»: Write a function that adds two numbers and returns the result.
1
2
3
4
5int add(int a, int b) {
return a + b;
}
int result = add(3, 4);
Challenging Task (for advanced students) π―
- Factorial π’: Write a function that calculates the factorial of a number using recursion. $n!$
- Fibonacci β°: Write a function that calculates the nth Fibonacci number using recursion.
3.2 Modular Programming π§©
Time Allocation: 15 minutes β°
Concept Explanation:
What is Modular Programming? π οΈ
Modular programming involves dividing a large program into smaller, manageable parts, often called functions or modules. Each module has a specific responsibility.Mechanism: π οΈ
Functions are the fundamental building blocks of modular programming. A modular program is easier to debug π, understand π, and maintain π§ because each function handles one specific aspect of the program.Clean Code π§Ό: Keeping functions small, giving them meaningful names, and avoiding repeated code results in more readable and maintainable programs.
Simple Task (for noobs) πΆ
Python π: Break down a program that calculates the area of a rectangle and a circle into separate functions.
1
2
3
4
5
6
7
8def area_rectangle(length, width):
return length * width
def area_circle(radius):
return 3.14 * radius * radius
print(area_rectangle(5, 4))
print(area_circle(3))C++ π»: Create a modular program where one function takes input, and another function calculates the square of a number.
1
2
3
4
5
6
7
8
9
10
11
12
13int get_input() {
int x;
cout << "Enter a number: ";
cin >> x;
return x;
}
int square(int x) {
return x * x;
}
int num = get_input();
cout << square(num);
3.3 Working with Lists, Dictionaries, and Arrays ππ’
Time Allocation: 20 minutes β°
Concept Explanation:
Lists (Python) π:
A list is a mutable, ordered collection of items. You can add β, remove β, and access elements by their index.Dictionaries (Python) π:
A dictionary stores data as key-value pairs πβ‘οΈ, allowing fast lookup based on keys.Arrays (C++) π»:
Arrays are fixed-size collections of elements of the same type π². They allow direct access to elements using their index.Mechanism: π§
Lists and arrays store elements contiguously in memory, allowing fast access . Dictionaries use hashing to map keys to values for quick lookups π.
Simple Task (for noobs) πΆ
Python (Lists & Dictionaries) π: Create a list of names, add a new name to the list, and print the updated list. Then, create a dictionary with names and ages and access one of the values.
1
2
3
4
5
6names = ["Alice", "Bob", "Charlie"]
names.append("David")
print(names)
ages = {"Alice": 25, "Bob": 30}
print(ages["Bob"])C++ (Arrays) π»: Create an array of integers, and print the elements using a loop.
1
2
3
4int arr[5] = {1, 2, 3, 4, 5};
for (int i = 0; i < 5; i++) {
cout << arr[i] << " ";
}
Challenging Task (for advanced students) π―
- C++ (Arrays) π»: Write a function to search for a number in a sorted array using binary search, with time complexity O(log n).
Challenge: Can you do it using recursion? π
3.4 Hands-On Practice: Building Functions and Manipulating Data Structures π οΈ
Time Allocation: 10 minutes β°
Task:
- Noobs πΆ: Write a function to calculate the sum of all elements in a list/array.
- Advanced π―: Write a program to implement a sorting algorithm (e.g., bubble sort, selection sort) for an array of numbers.
Fast sort explained in 4 minutes πΊ fast sort (YouTube)