Linked List - Implementation in C/C++

Linked List - Implementation in C/C++

mycodeschool

11 лет назад

1,622,750 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

@user-vk8vb5iq9q
@user-vk8vb5iq9q - 27.01.2024 13:31

can we use calloc also for memory allocation ?????
i thing
if the created node is a last node then link will get NULL or '0' itself.

Ответить
@peterbaranj9661
@peterbaranj9661 - 04.10.2023 19:57

Thank you so much bro

Ответить
@ahmadibrahim3969
@ahmadibrahim3969 - 27.09.2023 19:47

This is a very clear explanation thanks a lot.

Ответить
@ramanjangu895
@ramanjangu895 - 25.08.2023 15:49

Would You like to provide Notes of this series ,please

Ответить
@user-hd1ve6tq8h
@user-hd1ve6tq8h - 03.06.2023 18:48

@mohamedsalimelbazzi2576 Study this materials so you'll know what to teach ( outad ta3 le3bar )

Ответить
@stopthecap8810
@stopthecap8810 - 29.11.2022 18:40

this video is so useful, elaborate, thorough, and well explained that I use it just to brush up my memory of implementing a linked list in java lmao

Ответить
@whacoder725
@whacoder725 - 14.09.2022 04:43

I graduate from my good school institute of technology

Ответить
@fcyare
@fcyare - 15.08.2022 10:31

its Monday 15 August 2022 give a chance I will be professional developer insha allah

Ответить
@aayushranjan5572
@aayushranjan5572 - 08.07.2022 11:09

any one help me to details expalin of linked list

Ответить
@googleit2490
@googleit2490 - 02.07.2022 17:15

1503354-27-1945

Ответить
@robertmanigault625
@robertmanigault625 - 06.06.2022 18:27

I recently discovered your videos. Many years ago I was a programmer with weak knowledge of data structures. Now, I've decided to gain a firm understanding of them. I've viewed several videos and am currently reading a book on the subject matter. You have managed to explain data structures so clearly that the seem so easy to understand. You are an outstanding teacher. Thanks for your videos.

Ответить
@antrikshgupta35
@antrikshgupta35 - 03.06.2022 14:19

Great Content

Ответить
@sudhakarjha75
@sudhakarjha75 - 21.05.2022 20:26

What a beautiful explanation ❤️❤️❤️❤️

Ответить
@Lashistoriasdelilith
@Lashistoriasdelilith - 14.04.2022 01:22

if the condition in the while is that temp->next != NULL , when I print it doesn't print the first element as I'm first making temp = temp->next and if I print before that, it doesn't print the last one because it's null....

Ответить
@brandonoviedo6339
@brandonoviedo6339 - 14.03.2022 01:46

A NULL = ?

Ответить
@baibhavvikas1767
@baibhavvikas1767 - 09.03.2022 13:43

thanks for talking about new node and malloc coz i didn't know about the new node feature of c++

Ответить
@m4nnyyy
@m4nnyyy - 22.02.2022 11:51

i love you brother

Ответить
@dognip
@dognip - 20.02.2022 19:53

These videos are literally gold bars.

Ответить
@user-mx6gi8fy6j
@user-mx6gi8fy6j - 16.02.2022 16:26

thanks you Sir . very helpful

Ответить
@CodingKoleji
@CodingKoleji - 19.12.2021 08:16

I really felt in love with this channel the contents are very helpful before I hate this course in my college but for now I am really excited about thank a lot man for helping learners for free

Ответить
@tasmiyakhan3356
@tasmiyakhan3356 - 27.11.2021 17:42

watching in 2021

Ответить
@AbhishekYadav-hs4ix
@AbhishekYadav-hs4ix - 18.11.2021 16:58

Animesh Sir, Dhanyavaad.

Ответить
@arjunans5139
@arjunans5139 - 12.11.2021 12:48

Thank god ,I found this channel

Ответить
@moumitachakrabortyswarno3110
@moumitachakrabortyswarno3110 - 21.10.2021 09:48

this series is a gem...respect u sir

Ответить
@taruneshrai1828
@taruneshrai1828 - 18.10.2021 12:15

excellent....

Ответить
@hitikagahalot4549
@hitikagahalot4549 - 07.10.2021 15:47

Finally cleared all my doubts. Thank you so much sir!!!!

Ответить
@riyajoy8501
@riyajoy8501 - 05.10.2021 20:08

hey is node* and * node the same?

Ответить
@abrahanshahzad1371
@abrahanshahzad1371 - 19.09.2021 14:13

class Node {
public:
int key;
int data;
Node* next;
Node() {
key = 0;
data = 0;
next = NULL;
}
Node(int k, int d) {
key = k;
data = d;
}
};
class SinglyLinkedList {
public:
Node* head;
SinglyLinkedList() {
head = NULL;
}
SinglyLinkedList(Node* n) {
head = n;
}
};

Ответить
@ahsantahirprogramming
@ahsantahirprogramming - 15.09.2021 21:54

Chanel hotu aisa

Ответить
@satyamrai2577
@satyamrai2577 - 08.09.2021 00:58

I love this channel.

Ответить
@kuladeepakkarapaka7794
@kuladeepakkarapaka7794 - 08.08.2021 11:20

I tried to print data using while loop as you mentioned in the video at 12th minute my programme is printing all the elements in the linked list except first element?

Ответить
@ukeez01
@ukeez01 - 26.07.2021 11:07

you make hard topic too smooth..... Thanks Sir

Ответить
@akshaykumar-bq2sr
@akshaykumar-bq2sr - 06.07.2021 13:18

everthing went over my head

Ответить
@naveen1837
@naveen1837 - 12.06.2021 09:51

I have a doubt. After traversing through the list ,the temp1 variable points at the last node as temp1->link == NULL .so writing temp1->link = temp
after the completion of the loop will make the link at the last node to be temp which isn't correct. Hoping to get some help on that

Ответить
@_iamankitt_
@_iamankitt_ - 02.06.2021 11:06

How can u be so good in teaching mate?

Ответить
@vikrant_dhakane
@vikrant_dhakane - 02.06.2021 06:40

Suggestion after 8 year 🔥

Ответить
@pc_40_ayushgupta39
@pc_40_ayushgupta39 - 15.05.2021 22:19

thanks

Ответить
@annih2195
@annih2195 - 08.05.2021 03:36

This is amazing!!! My prof calls this "stopping at the end"

Ответить
@ravisinha1310
@ravisinha1310 - 23.04.2021 07:58

Love for humblefool lord harsha

Ответить
@ahmedifhaam7266
@ahmedifhaam7266 - 23.04.2021 01:06

Why..just why..cannot (ANY) university professor explain it as simply as this guy..thank you so much.. explaining coudnt be made simpler ugh, amazing dude, amazing

Ответить
@deadelaus2611
@deadelaus2611 - 24.03.2021 15:21

This was amazingly helpful. You are clearly gifted at teaching these sorts of subjects. Thank you so much for these videos.

Ответить
@conquer_knowledge6608
@conquer_knowledge6608 - 17.03.2021 20:43

this is 2021 ..but these videos are epic and unique...good videos sir

Ответить
@Urwithech
@Urwithech - 13.03.2021 20:42

Bhai tu hi krwayega hamara aur in goron ka google mai placement

Ответить