├── .github └── language.js ├── Mid Semester-1 ├── 1. Total Sales of Sourav.py ├── 2. Letter Histogram.py ├── 3. Simple Average 1.py └── 4. Rank of Word.py ├── README.md ├── Week-1 ├── 1. The average of 10 numbers using Array.c ├── 2. You are given two matrices of dimensions N x N, filled with integers. Your task is to print the product of these matrices.c ├── 3. Calculate the sum of array elements by passing to a function.c ├── 4. count a total number of duplicate elements in the array using function.c ├── 5. Calculate sum of all elements of an array using pointers as arguments..c ├── 6. Add array element.c ├── 7. Delete elements from Array.c ├── 8. Display humidity.c ├── 9. Second Highest number in Array.c └── README.md ├── Week-2 ├── 1. Take an 1D array of size n. It contains names of students in a class. Print the names in separated lines.c ├── 2. Delete duplicate elements in Array.c ├── 3. Perform multiplication of two polynomial using arrays.c ├── 4. Perform right shift operation by n on an 1D array of size m. For example say, A[5] = {1,2,3,4,5}. If we are right shifting the elements by 3 then the output will be {4,5,1,2,3}.c ├── 5. A is a square matrix of dimension nxn. ‘n’ is user input. Calculate the value of the following equation A2+A+I.c ├── 6. Take a 2D array of size 2Xn. 1st row contains the roll numbers and 2nd row contains corresponding marks in exam. 'n' is the number of students here. Now sort the marks in ascending order along with the roll numbers and.c ├── 8. Check whether a matrix of nXm size is sparse or not.c ├── 9. Transpose of a matrix.c └── README.md ├── Week-3 ├── 1. Python program to get the volume of a sphere with radius 6. Take pi=3.14.py ├── 2. even or odd.py ├── 3. area of a circle.py ├── 4. height of a triangle and compute the area.py ├── 5. subtract the smaller number from the larger number.py ├── 6. Take the name, age and address as user input.py ├── 7. Write a Python program to solve (x + y) _ (x + y).py ├── 8. convert seconds to day, hour, minutes and second.py ├── 9. Sort three integers using conditional statements.py └── README.md ├── Week-4 ├── 1. Take a number n as input and print the sum of all n natural numbers using for loop.py ├── 2. Take a number n as input and check whether it is palindrome or not.py ├── 3. Take a number n as user input. Find its square root.py ├── 4. Print the numbers that are divisible by both 3 and 7 in the range 1 to n. take n as user input.py ├── 5. Print the factorial of n. Take n as user input.py ├── 6. Armstrong or not.py ├── 8. prime or not.py ├── 9. print all factors.py └── README.md ├── Week-5 ├── 1. You have set of numbers stores in a linked list. Take another number n as user input and insert the element in a position in the linked list. the position of insetion is also given by the user.c ├── 2. Take a linked list as user input. Copy all the unique elements from that linked list into another new linked list.c ├── 3. Add two given polynomil using linked list.c ├── 4. Multiply two given polynomial using linked list.c ├── 5. You have a set of numbers stored in a linked list. Find the sum of all numbers in even positions in a linked list.c ├── 6. You have a set of elements stored in a linked lsit. Delete all the odd numbers from the linked list.c ├── 7. You have two linked lists given. Merge them into a single list.c ├── 8. Sort the list using bubble sort.c └── README.md ├── Week-6 ├── 1. Write program to find the prime numbers in a range using function.py ├── 2. Take n as input and check which ones are Armstrong number using a function in the range 1 to n.py ├── 3. Write a function to calculate GCD of two numbers and then call the function to get GCD of 4 numbers.py ├── 4. Take a paragraph as input and then replace all the “the” word with “THE”.py ├── 5. Take a paragraph as input and then check whether a specific word is present in the paragraph or not. the word also should be user input.py ├── 6. Take a paragraph as input and then delete all the white spaces at the beginning and the end of the paragraph.py ├── 7. Take a sentence as input. Take two integer numbers as input. Print the substring starting and ending at the positions same as those numbers.py ├── 8. Given 2 strings, str1, and str2 return a new string made of the first, middle and last char of each of the input strings. characters from the 1st srting will be in lowercase and characters from the 2nd srting will be in uppercase.py └── README.md ├── Week-7 ├── 1. insert an element in a specific position in doubly linked list.c ├── 2. Delete an element from a given position in doubly linked list.c ├── 3. Insert at the beginning and at the end of a doubly linked list.c ├── 4. Insert elements at the end and the beginning of a circular linked list.c ├── 5. delete an element from a given position in cicular linked list.c ├── 6. Given two sorted doubly linked lists. Merge them into a single one without creating any new node.c ├── 7. Reverse a circular linked list.c ├── 8. Given a circular linked list. Split it into two separate circular linked lists without creating new nodes. One will contain all the odd numbers. Another one will contain all the even numbers.c └── README.md ├── Week-8 ├── 1.py ├── 2.py ├── 3.py ├── 4.py ├── 5.py ├── 6.py ├── 7.py ├── 8.py ├── 9.py └── README.md ├── Week-9.1 └── 1.py └── Week-9 ├── 1.c ├── 2.c ├── 3.c ├── 4.py ├── 5.c ├── 6.py ├── 7.py ├── 8.py └── 9. /.github/language.js: -------------------------------------------------------------------------------- 1 | console.log("Pick Me Up Github Trending Algo"); 2 | -------------------------------------------------------------------------------- /Mid Semester-1/1. Total Sales of Sourav.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Mid Semester-1/1. Total Sales of Sourav.py -------------------------------------------------------------------------------- /Mid Semester-1/2. Letter Histogram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Mid Semester-1/2. Letter Histogram.py -------------------------------------------------------------------------------- /Mid Semester-1/3. Simple Average 1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Mid Semester-1/3. Simple Average 1.py -------------------------------------------------------------------------------- /Mid Semester-1/4. Rank of Word.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Mid Semester-1/4. Rank of Word.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/README.md -------------------------------------------------------------------------------- /Week-1/1. The average of 10 numbers using Array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-1/1. The average of 10 numbers using Array.c -------------------------------------------------------------------------------- /Week-1/2. You are given two matrices of dimensions N x N, filled with integers. Your task is to print the product of these matrices.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-1/2. You are given two matrices of dimensions N x N, filled with integers. Your task is to print the product of these matrices.c -------------------------------------------------------------------------------- /Week-1/3. Calculate the sum of array elements by passing to a function.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-1/3. Calculate the sum of array elements by passing to a function.c -------------------------------------------------------------------------------- /Week-1/4. count a total number of duplicate elements in the array using function.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-1/4. count a total number of duplicate elements in the array using function.c -------------------------------------------------------------------------------- /Week-1/5. Calculate sum of all elements of an array using pointers as arguments..c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-1/5. Calculate sum of all elements of an array using pointers as arguments..c -------------------------------------------------------------------------------- /Week-1/6. Add array element.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-1/6. Add array element.c -------------------------------------------------------------------------------- /Week-1/7. Delete elements from Array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-1/7. Delete elements from Array.c -------------------------------------------------------------------------------- /Week-1/8. Display humidity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-1/8. Display humidity.c -------------------------------------------------------------------------------- /Week-1/9. Second Highest number in Array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-1/9. Second Highest number in Array.c -------------------------------------------------------------------------------- /Week-1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-1/README.md -------------------------------------------------------------------------------- /Week-2/1. Take an 1D array of size n. It contains names of students in a class. Print the names in separated lines.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-2/1. Take an 1D array of size n. It contains names of students in a class. Print the names in separated lines.c -------------------------------------------------------------------------------- /Week-2/2. Delete duplicate elements in Array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-2/2. Delete duplicate elements in Array.c -------------------------------------------------------------------------------- /Week-2/3. Perform multiplication of two polynomial using arrays.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-2/3. Perform multiplication of two polynomial using arrays.c -------------------------------------------------------------------------------- /Week-2/4. Perform right shift operation by n on an 1D array of size m. For example say, A[5] = {1,2,3,4,5}. If we are right shifting the elements by 3 then the output will be {4,5,1,2,3}.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-2/4. Perform right shift operation by n on an 1D array of size m. For example say, A[5] = {1,2,3,4,5}. If we are right shifting the elements by 3 then the output will be {4,5,1,2,3}.c -------------------------------------------------------------------------------- /Week-2/5. A is a square matrix of dimension nxn. ‘n’ is user input. Calculate the value of the following equation A2+A+I.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-2/5. A is a square matrix of dimension nxn. ‘n’ is user input. Calculate the value of the following equation A2+A+I.c -------------------------------------------------------------------------------- /Week-2/6. Take a 2D array of size 2Xn. 1st row contains the roll numbers and 2nd row contains corresponding marks in exam. 'n' is the number of students here. Now sort the marks in ascending order along with the roll numbers and.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-2/6. Take a 2D array of size 2Xn. 1st row contains the roll numbers and 2nd row contains corresponding marks in exam. 'n' is the number of students here. Now sort the marks in ascending order along with the roll numbers and.c -------------------------------------------------------------------------------- /Week-2/8. Check whether a matrix of nXm size is sparse or not.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-2/8. Check whether a matrix of nXm size is sparse or not.c -------------------------------------------------------------------------------- /Week-2/9. Transpose of a matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-2/9. Transpose of a matrix.c -------------------------------------------------------------------------------- /Week-2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-2/README.md -------------------------------------------------------------------------------- /Week-3/1. Python program to get the volume of a sphere with radius 6. Take pi=3.14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-3/1. Python program to get the volume of a sphere with radius 6. Take pi=3.14.py -------------------------------------------------------------------------------- /Week-3/2. even or odd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-3/2. even or odd.py -------------------------------------------------------------------------------- /Week-3/3. area of a circle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-3/3. area of a circle.py -------------------------------------------------------------------------------- /Week-3/4. height of a triangle and compute the area.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-3/4. height of a triangle and compute the area.py -------------------------------------------------------------------------------- /Week-3/5. subtract the smaller number from the larger number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-3/5. subtract the smaller number from the larger number.py -------------------------------------------------------------------------------- /Week-3/6. Take the name, age and address as user input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-3/6. Take the name, age and address as user input.py -------------------------------------------------------------------------------- /Week-3/7. Write a Python program to solve (x + y) _ (x + y).py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-3/7. Write a Python program to solve (x + y) _ (x + y).py -------------------------------------------------------------------------------- /Week-3/8. convert seconds to day, hour, minutes and second.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-3/8. convert seconds to day, hour, minutes and second.py -------------------------------------------------------------------------------- /Week-3/9. Sort three integers using conditional statements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-3/9. Sort three integers using conditional statements.py -------------------------------------------------------------------------------- /Week-3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-3/README.md -------------------------------------------------------------------------------- /Week-4/1. Take a number n as input and print the sum of all n natural numbers using for loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-4/1. Take a number n as input and print the sum of all n natural numbers using for loop.py -------------------------------------------------------------------------------- /Week-4/2. Take a number n as input and check whether it is palindrome or not.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-4/2. Take a number n as input and check whether it is palindrome or not.py -------------------------------------------------------------------------------- /Week-4/3. Take a number n as user input. Find its square root.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-4/3. Take a number n as user input. Find its square root.py -------------------------------------------------------------------------------- /Week-4/4. Print the numbers that are divisible by both 3 and 7 in the range 1 to n. take n as user input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-4/4. Print the numbers that are divisible by both 3 and 7 in the range 1 to n. take n as user input.py -------------------------------------------------------------------------------- /Week-4/5. Print the factorial of n. Take n as user input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-4/5. Print the factorial of n. Take n as user input.py -------------------------------------------------------------------------------- /Week-4/6. Armstrong or not.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-4/6. Armstrong or not.py -------------------------------------------------------------------------------- /Week-4/8. prime or not.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-4/8. prime or not.py -------------------------------------------------------------------------------- /Week-4/9. print all factors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-4/9. print all factors.py -------------------------------------------------------------------------------- /Week-4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-4/README.md -------------------------------------------------------------------------------- /Week-5/1. You have set of numbers stores in a linked list. Take another number n as user input and insert the element in a position in the linked list. the position of insetion is also given by the user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-5/1. You have set of numbers stores in a linked list. Take another number n as user input and insert the element in a position in the linked list. the position of insetion is also given by the user.c -------------------------------------------------------------------------------- /Week-5/2. Take a linked list as user input. Copy all the unique elements from that linked list into another new linked list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-5/2. Take a linked list as user input. Copy all the unique elements from that linked list into another new linked list.c -------------------------------------------------------------------------------- /Week-5/3. Add two given polynomil using linked list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-5/3. Add two given polynomil using linked list.c -------------------------------------------------------------------------------- /Week-5/4. Multiply two given polynomial using linked list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-5/4. Multiply two given polynomial using linked list.c -------------------------------------------------------------------------------- /Week-5/5. You have a set of numbers stored in a linked list. Find the sum of all numbers in even positions in a linked list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-5/5. You have a set of numbers stored in a linked list. Find the sum of all numbers in even positions in a linked list.c -------------------------------------------------------------------------------- /Week-5/6. You have a set of elements stored in a linked lsit. Delete all the odd numbers from the linked list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-5/6. You have a set of elements stored in a linked lsit. Delete all the odd numbers from the linked list.c -------------------------------------------------------------------------------- /Week-5/7. You have two linked lists given. Merge them into a single list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-5/7. You have two linked lists given. Merge them into a single list.c -------------------------------------------------------------------------------- /Week-5/8. Sort the list using bubble sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-5/8. Sort the list using bubble sort.c -------------------------------------------------------------------------------- /Week-5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-5/README.md -------------------------------------------------------------------------------- /Week-6/1. Write program to find the prime numbers in a range using function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-6/1. Write program to find the prime numbers in a range using function.py -------------------------------------------------------------------------------- /Week-6/2. Take n as input and check which ones are Armstrong number using a function in the range 1 to n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-6/2. Take n as input and check which ones are Armstrong number using a function in the range 1 to n.py -------------------------------------------------------------------------------- /Week-6/3. Write a function to calculate GCD of two numbers and then call the function to get GCD of 4 numbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-6/3. Write a function to calculate GCD of two numbers and then call the function to get GCD of 4 numbers.py -------------------------------------------------------------------------------- /Week-6/4. Take a paragraph as input and then replace all the “the” word with “THE”.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-6/4. Take a paragraph as input and then replace all the “the” word with “THE”.py -------------------------------------------------------------------------------- /Week-6/5. Take a paragraph as input and then check whether a specific word is present in the paragraph or not. the word also should be user input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-6/5. Take a paragraph as input and then check whether a specific word is present in the paragraph or not. the word also should be user input.py -------------------------------------------------------------------------------- /Week-6/6. Take a paragraph as input and then delete all the white spaces at the beginning and the end of the paragraph.py: -------------------------------------------------------------------------------- 1 | s=input() 2 | a=s.strip() 3 | print(a) 4 | -------------------------------------------------------------------------------- /Week-6/7. Take a sentence as input. Take two integer numbers as input. Print the substring starting and ending at the positions same as those numbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-6/7. Take a sentence as input. Take two integer numbers as input. Print the substring starting and ending at the positions same as those numbers.py -------------------------------------------------------------------------------- /Week-6/8. Given 2 strings, str1, and str2 return a new string made of the first, middle and last char of each of the input strings. characters from the 1st srting will be in lowercase and characters from the 2nd srting will be in uppercase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-6/8. Given 2 strings, str1, and str2 return a new string made of the first, middle and last char of each of the input strings. characters from the 1st srting will be in lowercase and characters from the 2nd srting will be in uppercase.py -------------------------------------------------------------------------------- /Week-6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-6/README.md -------------------------------------------------------------------------------- /Week-7/1. insert an element in a specific position in doubly linked list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-7/1. insert an element in a specific position in doubly linked list.c -------------------------------------------------------------------------------- /Week-7/2. Delete an element from a given position in doubly linked list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-7/2. Delete an element from a given position in doubly linked list.c -------------------------------------------------------------------------------- /Week-7/3. Insert at the beginning and at the end of a doubly linked list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-7/3. Insert at the beginning and at the end of a doubly linked list.c -------------------------------------------------------------------------------- /Week-7/4. Insert elements at the end and the beginning of a circular linked list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-7/4. Insert elements at the end and the beginning of a circular linked list.c -------------------------------------------------------------------------------- /Week-7/5. delete an element from a given position in cicular linked list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-7/5. delete an element from a given position in cicular linked list.c -------------------------------------------------------------------------------- /Week-7/6. Given two sorted doubly linked lists. Merge them into a single one without creating any new node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-7/6. Given two sorted doubly linked lists. Merge them into a single one without creating any new node.c -------------------------------------------------------------------------------- /Week-7/7. Reverse a circular linked list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-7/7. Reverse a circular linked list.c -------------------------------------------------------------------------------- /Week-7/8. Given a circular linked list. Split it into two separate circular linked lists without creating new nodes. One will contain all the odd numbers. Another one will contain all the even numbers.c: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Week-7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-7/README.md -------------------------------------------------------------------------------- /Week-8/1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-8/1.py -------------------------------------------------------------------------------- /Week-8/2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-8/2.py -------------------------------------------------------------------------------- /Week-8/3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-8/3.py -------------------------------------------------------------------------------- /Week-8/4.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Week-8/5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-8/5.py -------------------------------------------------------------------------------- /Week-8/6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-8/6.py -------------------------------------------------------------------------------- /Week-8/7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-8/7.py -------------------------------------------------------------------------------- /Week-8/8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-8/8.py -------------------------------------------------------------------------------- /Week-8/9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-8/9.py -------------------------------------------------------------------------------- /Week-8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-8/README.md -------------------------------------------------------------------------------- /Week-9.1/1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-9.1/1.py -------------------------------------------------------------------------------- /Week-9/1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-9/1.c -------------------------------------------------------------------------------- /Week-9/2.c: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Week-9/3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-9/3.c -------------------------------------------------------------------------------- /Week-9/4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-9/4.py -------------------------------------------------------------------------------- /Week-9/5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-9/5.c -------------------------------------------------------------------------------- /Week-9/6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-9/6.py -------------------------------------------------------------------------------- /Week-9/7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-9/7.py -------------------------------------------------------------------------------- /Week-9/8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UEMK-CS-2019/DSA/HEAD/Week-9/8.py -------------------------------------------------------------------------------- /Week-9/9.: -------------------------------------------------------------------------------- 1 | 2 | --------------------------------------------------------------------------------