Data Structure using C

📊 Array Operations in Python

Create, display and search elements in a 10-item array with complete Python implementation

View Code →

📊 Array Operations in Python

Create an array of size 10, input values and display sum and average of all elements in the array.

View Code →

📊 Array Operations in Python

Create arrays A, B and C of size 3, perform C = A + B.

View Code →

📊 Array Operations in Python

Create arrays A, B of size 3, C of size 6, merge A and B into C.

View Code →

📊 Array Operations in Python

5. Create an array of size 10, find the largest value from the array.

View Code →

📊 6. Insert an element into the array at user defined position.

View Code →

📊 7. Delete an element from the array from user defined position.

View Code →

📊 8. Sort the array into ascending order.

View Code →

📊 9. Sort the array into descending order.

View Code →

📊 10.Write a program to multiply two matrices.

View Code →

11. Implement stack using array with following operations: push, pop, print, peek, peep, change, exit.

View Code →

12. Write a program to find out the factorial of a number using recursion (stack).

View Code →

13. Write a program to print strings in reverse order using stack.

View Code →

14. Write a program to find the factorial of a given integer number using stack.

View Code →

15. Write a program to find the power of a given number using stack.

View Code →

16. Write a program to find GCD of two numbers.

View Code →

17. Write a program to find the Smallest Common Divisor of a given number.

View Code →

18. Write a program to find Minimum and Maximum numbers from the given array using Recursion.

View Code →

19. Write a program which performs the following operations using a simple queue. : insert() -> delete() -> display()

View Code →

No comments:

Post a Comment

Total Pageviews

Search This Blog

Write a program which performs the following operations using a simple queue. : insert() -> delete() -> display()

Write a program which performs the following operations using a simple queue. : insert() -> delete() -> display() ...