Program for Implementation of Single Linked List | Part-1

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

💡 Also Watch

Subscribe to our channel and hit the bell 🔔🔔🔔 icon to get video updates.

💡 Visit Our Websites

#DataStructures #Training #Course #Tutorials
--------------------------

💡 About NareshIT:

"Naresh IT is having 14+ years of experience in software training industry and the best Software Training Institute for online training, classroom training, weekend training, corporate training of Hadoop, Salesforce, AWS, DevOps, Spark, Data Science, Python, Tableau, RPA , Java, C#.NET, ASP.NET, Oracle, Testing Tools, Silver light, Linq, SQL Server, Selenium, Android, iPhone, C Language, C++, PHP and Digital Marketing in USA, Hyderabad, Chennai and Vijayawada, Bangalore India which provides online training across all the locations

--------------------------

💡 Our Online Training Features:
🎈 Training with Real-Time Experts
🎈 Industry Specific Scenario’s
🎈 Flexible Timings
🎈 Soft Copy of Material
🎈 Share Videos of each and every session.

--------------------------

💡 Please write back to us at

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

I don't know who disliked this video, but I can say that who disliked this video will never learn data structures anywhere in the youtube. Srinivas sir, it's really excellent how easily you're teaching. Thank you very very much sir, keep teaching us, please.

jshubtelugu
Автор

the best linked list tutorial i have ever seen understanding to fullest sir

ankitchatterjee
Автор

The way of teaching is best. Long but easy to understand. Even college professor's could not give us such easy understanding. Thank you for this free help, teaching. It motivates me to see all lectures. Thank you sir.


From Nanded Maharashtra

mangeshaankade
Автор

I was seriously so worried about how to work with linked lists, but this video made my day! It is really very helpful for learning and implementing linked lists. A very big thank you for this one! 😊😊

aditinikam
Автор

Would be helpful if you can add to the description at which time you're starting programming the different functions =D
for example:
9:54 append()
Awesome explanation, thank you for your help!

raphaelkoch
Автор

HERE IS THE COMPLETE CODE:
#include<stdio.h>
#include<stdlib.h>
struct node
{
int data;
struct node* link;
};
struct node* root = NULL;
void main()
{ int ch;
while(1)
{

printf("Single linked list operations are: \n");
printf("1.Append\n");
printf("2.AddAtBegin\n");
printf("3.AddAtAfter\n");
printf("4.Length\n");
printf("5.Display\n");
printf("6.Delete\n");
printf("7.Quit\n");
printf("enter your choice:\n");
scanf("%d", &ch);
printf("Your choice was: %d\n", ch);
switch(ch)
{
case 1: append();
break;

case 7: exit(0);
break;
default : printf("invalid input");
}
}
}
void append()
{
struct node* temp;
temp=(struct node*)malloc(sizeof(struct node));
printf("Enter node data\n");
scanf("%d", &temp->data);
temp->link=NULL;
if(root==NULL)
{
root= temp;
}
else
{
struct node* p;
p=root;
while(p->link!=NULL)
{
p=p->link;
}
p->link=temp;
}


}

goyaldeekshant
Автор

This video made me love Data Structure.The way you teach is incredible.You have made it understand so easily and I have got all my doubts clear in which I was stuck till date.Thanks alot!

jyotiksahraj
Автор

The video was long. I almost thought of not watching it. But, I did. I CANNOT THANK YOU MORE FOR THIS!

rakhshandamujib
Автор

I really like the way you teach this structure - step by step... Clear and easy to understand...!!!

Evan
Автор

i will never forget him in my life...the best teacher ever.😇😇😇

kumarik
Автор

This is best ever explaination of single linked list a lot naresh technologies & please keep its up....& ur teaching style is amazing I can't explain in again thanx a

zishanansari
Автор

Wonderful, Amazing, Hats Off, Brilliant lecture, Thank You Shrinivas Sir ❤

rammaheshwari
Автор

Thank you is a very small word for you sir... You just don't realise that how you helped many students to learn

afreenashraf
Автор

Gifted to teach Am following his method to teach my students!!God bless u

tarekegnyohannes
Автор

Great explanation use to watch all videos ....i have done with the c language class of yours batch in building of naresh it

RealUse-By-Vishal
Автор

Sir aap jio hazaro saal....aap hum student k lye kisi farishtey s Kam nhi

Deepaksahu-zvdu
Автор

Sir you are doing a great job . All of your playlists are really helpful. You are able to clear all the concepts so easily. But the only thing which is missing is should share the source code of every tutorial in your description. It is essential and will be extremely helpful for your subscribers.

prashantruhela
Автор

After seeing this u just proved the line which is your wallpaper ...U r creative..thank you so much sir😊

dhruvishah
Автор

By for the best teacher for computer programs

sridharannatesan
Автор

u are a great teacher sir...and your ms paint skills are unreal !!!

juhabach
join shbcf.ru