Data Structures with Python 2hours course in Telugu

preview_player
Показать описание


PythonLife Community:

PythonLife Instagram:

PythonLife Linkedin:

PythonLife GitHub:

Рекомендации по теме
Комментарии
Автор

Dsa
Data structures introduction (00.00.00-00.04.09)
Arrays in python(4.10-12.59)
Stack and coding(13-35:45)
Queue and coding(35:0-50:45)
Linked list (50:56-1:06:10)
Trees(1:06:30-1:35:10)
Graph(1:35:25-1:50:00)
Sorting and types(1:53:00-1:55:00)
Selection sort(1:55:05-2:09:30)
Insertion sort(2:09:32-2:22:10)
Merge sort(2:22:18-2:28:16)
Bubble sort (2:28:30-2:36:25)

PythonLifetelugu
Автор

Telugu lo python course ki okkadae mentor undali adhi kuda python life athane undali, proud of you bro
Non it lanti navalaki your god🤩

princevijay
Автор

anna inni rojulu nee videos nen endhuku chuudaledhu ani nen regret avthunna anna. chaala baaga cheppav, nuvvu cheptey oka friend cheppinattu anipinchindhi, thanks for the video

adithyavelaparthi
Автор

Perfectly explained, easy to understood

kadapagokul
Автор

No matter how hard you work early in the night, you don't understand how to remember these things.🥺

Villages
Автор

Bro nuvv chepthunna dsa concepts chala clear ga unnav so nuvu deenini parts parts ga pettu videos like arrays ki oka video, stack ki okati, and que ki okati alaa

bloggingbyasifali
Автор

Mrng mrng nee vedios chustene day start aithadhi Bro.., 😍

harivardhan
Автор

Thanks bro...chala days nundi wait chesthunna DSA video yeppudu chesthav ani..💯

lazytrader
Автор

Your explanation very useful for us. Please send pdf content

srinivaskumarkaram
Автор

ayyya super ayya enna helping thaliva.

saib
Автор

bro nuvvu use chena notes naku pampagalava.. and thanks bro sontha language lo unnantha swetcha vere language lo undadu baga artham ayyela cheppav. keep growing.

dheeraj.trader
Автор

Bro I watched ur videos really superb
Make videos on 1>generators
2>decorators
3>iterators
4>Regular expressions

shanthireddy
Автор

why we mentioned the class stack(object):
why only mentioned the object
is not possible to without object
plz rply me sir

SrinivasGurram-qd
Автор

Actually DSA ke bayata 3 Months time padutundi. Do this video covered atleast 50% in them.Avaru anna cheppandi Brother DSA start chesdam anukuntunna

deepureddy
Автор

MERGE SORT

def mergeSort(arr):
if len(arr) > 1:
mid = len(arr) // 2
left_half, right_half = arr[:mid], arr[mid:]

# Recursive calls to sort the halves.
mergeSort(left_half)
mergeSort(right_half)

# Merge the sorted halves back into the original array.
i = j = k = 0
while i < len(left_half) and j < len(right_half):
if left_half[i] <= right_half[j]:
arr[k] = left_half[i]
i += 1
else:
arr[k] = right_half[j]
j += 1
k += 1

# Handle any remaining elements in the left and right halves.
while i < len(left_half):
arr[k] = left_half[i]
i += 1
k += 1

while j < len(right_half):
arr[k] = right_half[j]
j += 1
k += 1

return arr

arr = [1, 27, 31, 14, 4, 3, 8, 6, 9, 1]
sorted_arr = mergeSort(arr)
print(sorted_arr)

kavyasri
Автор

Bro video on multi threading, regex and lambda functions plzzz

srikarnalingampelly
Автор

anna assalu linked list lo meeru cheppina example em ardham avvaledhu anna konchem baaga explain cheyandi remaining all superb..

comradeteja
Автор

All content midha more information and more examples explain cheyandhi plz

tjhansi
Автор

Bro please make cryptography in python tutorials in telugu

bharat
Автор

sir,
we need any mathematics concepts fro data structures and algoriths...

ramireddypoli