Тёмный

Implementation of Linked List in C/CPP | Insert and delete at any position | DSA in Tamil 

Logic First Tamil
Подписаться 194 тыс.
Просмотров 15 тыс.
50% 1

Опубликовано:

 

25 окт 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 28   
@wolfking7656
@wolfking7656 8 месяцев назад
Thanks you for teaching this complex code in comprehensive way
@velans8674
@velans8674 2 года назад
I have started to watch your DATA STRUCTURES and ALGORITHMS series from this Semester.... I am studying 1st Year of B.Sc. Computer Science... In my college syllabus, DATA STRUCTURES and ALGORITHMS is one of the major papers along with OOP in C++. Initially, I thought it is a tough paper. Because of the way of teaching in College by Proffessors. After watching your series and other channel's videos about DSA.. I felt it is not a tough paper . It is so easy... I have completed task which was given by you. As you said, I started to write code with paper and pen then only I executed my code. I am feeling now more confident. Now, I will do my semester lab without any fear. Thank You Ma'am for your wonderful lecture.... //Program to perform Operations on Linked list in C++ //Source Code by Velan_S #include #include using namespace std; struct nnode { int data; struct nnode *link; }; typedef struct nnode node; node *head=NULL; void insertatbeginning(int data) { node *newnode=(node*)malloc(sizeof(node)); if(head==NULL) { newnode->data=data; newnode->link=NULL; head=newnode; } else { newnode->data=data; newnode->link=head; head=newnode; } cout
@sogeking_usopp
@sogeking_usopp Год назад
bro we can use new to store in heap instead of heap...................
@VibushanVinayak
@VibushanVinayak 10 месяцев назад
Nice explanation..mam..It could be better if u explained using C++...Apart from that very well ..
@tamilkumaran8602
@tamilkumaran8602 Год назад
Dheivamey better than my colg teachers
@arulkumaransendilvel6853
@arulkumaransendilvel6853 2 года назад
Nice Explaination Mam Best way of teaching, I ever seen.
@kousikraj4597
@kousikraj4597 3 года назад
Nice explanation.. 👌
@gowthamvairavan2084
@gowthamvairavan2084 6 месяцев назад
❤❤❤
@jayaprabhu.j7914
@jayaprabhu.j7914 3 года назад
Superb sista...👏👏
@nivindanielj6061
@nivindanielj6061 3 года назад
deleting in middle...na edho thappu pandren...middle la naa delete pana (after temp) ella elements-um delete agadhu...can u clearify me ? mam !!
@LogicFirstTamil
@LogicFirstTamil 3 года назад
try adding print statements or you can debug in eclipse to check what is happening.
@kumaranj3790
@kumaranj3790 2 года назад
I got error on node*prev as uninitialized pointer how to solve
@baskarj9419
@baskarj9419 3 года назад
mam insertatposition function la for loop neenga sonna madhiri work agala, eg.,pos=3 appadina, 2nd position varaikum dhan insert pannamudium, 3rd positionla insert pananum podhu long integer value dhan store agudhu , insert pana value insert aga matudhu
@LogicFirstTamil
@LogicFirstTamil 3 года назад
pls rmbr that pos starts from 0. If u have 2 vals in list already, insert at end means pos 2. You cannot insert at pos 3 in this case.
@VELAYUTHAMSRIGANTHMCSR
@VELAYUTHAMSRIGANTHMCSR 2 года назад
thank you mam
@karuppusamy1401
@karuppusamy1401 3 года назад
Thanks mam
@Advebtures-hx4hv
@Advebtures-hx4hv 3 года назад
Akka silding window alogrithm and two poiners techinque and dynammic programming eppo akka video podu vinga
@LogicFirstTamil
@LogicFirstTamil 3 года назад
Sorry bro. Time aagum. Dont wait for my uploads. Now recording python. Sorting, Trees, Graphs lam mudichitu dhan adhellam.
@Advebtures-hx4hv
@Advebtures-hx4hv 3 года назад
@@LogicFirstTamil Evolo nal analum paravala akka an kandipa antha videos neega poturunga akka 2 months analum paravala akka
@nithishkumar9895
@nithishkumar9895 3 года назад
Akka java la epo poduvinga akka😢😢😢😢
@LogicFirstTamil
@LogicFirstTamil 3 года назад
will start soon.
@nithishkumar9895
@nithishkumar9895 3 года назад
@@LogicFirstTamil akka last ah java thaan ka solikuduthingaa ellarum athaan akka padichiruukom mostly en circle layee 43members akka daiky watching ur videos and learned lot akka thats why we are aksing java🙁🙁🙁🙁😔😔😔
@LogicFirstTamil
@LogicFirstTamil 3 года назад
Ok bro. will start. I am referring to some books to make sure I give all relevant info. Pls give me time :) By the way, do you have DSA in java in your college?
@nithishkumar9895
@nithishkumar9895 3 года назад
@@LogicFirstTamil iruku akka but antha alavuku thelivu ilaaa akka
@LogicFirstTamil
@LogicFirstTamil 3 года назад
@@nithishkumar9895 which college? can u mail ur dsa syllabus to logicfirstcoding@gmail.com . want to sèe the list of topics.
@ShanmathiC-i7r
@ShanmathiC-i7r Год назад
👏
Далее
Top 7 Data Structures for Interviews Explained SIMPLY
13:02
LINKED LIST (CREATION AND DISPLAY) - DATA STRUCTURES
42:19