1) Implement Linear search to find an item in a list ... · 8) Implement Linked List and...

25
1) Implement Linear search to find an item in a list. Program (1) A) B)

Transcript of 1) Implement Linear search to find an item in a list ... · 8) Implement Linked List and...

Page 1: 1) Implement Linear search to find an item in a list ... · 8) Implement Linked List and demonstrate the functionality to add and delete items in linked list. A) Singly linked list

1) Implement Linear search to find an item in a list.

Program (1)

A)

B)

Page 2: 1) Implement Linear search to find an item in a list ... · 8) Implement Linked List and demonstrate the functionality to add and delete items in linked list. A) Singly linked list

2) Implement Binary Search to find an item in an ordered lists.

Page 3: 1) Implement Linear search to find an item in a list ... · 8) Implement Linked List and demonstrate the functionality to add and delete items in linked list. A) Singly linked list
Page 4: 1) Implement Linear search to find an item in a list ... · 8) Implement Linked List and demonstrate the functionality to add and delete items in linked list. A) Singly linked list

3) Implement Sorting Algorithm

a. Bubble Sort

Page 5: 1) Implement Linear search to find an item in a list ... · 8) Implement Linked List and demonstrate the functionality to add and delete items in linked list. A) Singly linked list

b) Insertion Sort 3(A)

Page 6: 1) Implement Linear search to find an item in a list ... · 8) Implement Linked List and demonstrate the functionality to add and delete items in linked list. A) Singly linked list

C. Insertion Sort 3(B)

Page 7: 1) Implement Linear search to find an item in a list ... · 8) Implement Linked List and demonstrate the functionality to add and delete items in linked list. A) Singly linked list

C. Quick sort

Page 8: 1) Implement Linear search to find an item in a list ... · 8) Implement Linked List and demonstrate the functionality to add and delete items in linked list. A) Singly linked list

D. Merge sort

Page 9: 1) Implement Linear search to find an item in a list ... · 8) Implement Linked List and demonstrate the functionality to add and delete items in linked list. A) Singly linked list

4) Implement use of sets and various operations of sets .

Page 10: 1) Implement Linear search to find an item in a list ... · 8) Implement Linked List and demonstrate the functionality to add and delete items in linked list. A) Singly linked list
Page 11: 1) Implement Linear search to find an item in a list ... · 8) Implement Linked List and demonstrate the functionality to add and delete items in linked list. A) Singly linked list

5) Implementing working of Stacks. (pop method to take the last item added off the stack and a push

method to add a item to the stack)

6) Implement Program for

a. Infix to Postfix conversion

Page 12: 1) Implement Linear search to find an item in a list ... · 8) Implement Linked List and demonstrate the functionality to add and delete items in linked list. A) Singly linked list
Page 13: 1) Implement Linear search to find an item in a list ... · 8) Implement Linked List and demonstrate the functionality to add and delete items in linked list. A) Singly linked list
Page 14: 1) Implement Linear search to find an item in a list ... · 8) Implement Linked List and demonstrate the functionality to add and delete items in linked list. A) Singly linked list

b. Postfix Evaluation

Page 15: 1) Implement Linear search to find an item in a list ... · 8) Implement Linked List and demonstrate the functionality to add and delete items in linked list. A) Singly linked list

7) Implement the Following

a. A queue as a list which you add and delete items from

Page 16: 1) Implement Linear search to find an item in a list ... · 8) Implement Linked List and demonstrate the functionality to add and delete items in linked list. A) Singly linked list

b. Circular Queue

Page 17: 1) Implement Linear search to find an item in a list ... · 8) Implement Linked List and demonstrate the functionality to add and delete items in linked list. A) Singly linked list
Page 18: 1) Implement Linear search to find an item in a list ... · 8) Implement Linked List and demonstrate the functionality to add and delete items in linked list. A) Singly linked list

8) Implement Linked List and demonstrate the functionality to add and delete items in linked list.

A) Singly linked list

Page 19: 1) Implement Linear search to find an item in a list ... · 8) Implement Linked List and demonstrate the functionality to add and delete items in linked list. A) Singly linked list

B) Doubly Linked list

Page 20: 1) Implement Linear search to find an item in a list ... · 8) Implement Linked List and demonstrate the functionality to add and delete items in linked list. A) Singly linked list
Page 21: 1) Implement Linear search to find an item in a list ... · 8) Implement Linked List and demonstrate the functionality to add and delete items in linked list. A) Singly linked list

9) Implement Binary Tree and Its Transversals.

Page 22: 1) Implement Linear search to find an item in a list ... · 8) Implement Linked List and demonstrate the functionality to add and delete items in linked list. A) Singly linked list

10) Recursive Implementation of

a.) Factorial

Page 23: 1) Implement Linear search to find an item in a list ... · 8) Implement Linked List and demonstrate the functionality to add and delete items in linked list. A) Singly linked list

b. Fibonacci

Page 24: 1) Implement Linear search to find an item in a list ... · 8) Implement Linked List and demonstrate the functionality to add and delete items in linked list. A) Singly linked list

c. Tower of Hanoi

Page 25: 1) Implement Linear search to find an item in a list ... · 8) Implement Linked List and demonstrate the functionality to add and delete items in linked list. A) Singly linked list