The best thing is that you are making videos on algorithms and data structure, there are lots of channels in youtube they do teach programming languages but not data structure and algorithms.Thanks a lot mam🙏🙏🙏
waking up at 5 am every day. and seeing your face has now become a habit. thank you so much for such lovely explanations and clearing my concept. mam please make two videos on 1. Reverse a circular doubly linked list & 2. Implementation of circular queue using linked list. Thank you mam you are amazing
mam your way of teaching and the things you taught us I is beyond this comment section ......... You are such a great teacher and I have been in love with you and with your teaching........
Incridible class madam.I have been starting to learn data structure So I was searching good teacher.finally i have gotten your class.I have also subscribed your chanel.Love From Bangladesh.
Mam I am improving my basic knowledge on coding I have so many of doubts on coding but your teaching coding is assume I am easier to learn thank you mam😊
I used to smoke weeds but at last when you said "bye,bye take care" I quit it,and made my 10 friends too. But joke safat it would be a more interactive if you have coded the logic live on IDE ,at last to the point , straight and simple explanation won my heart ♥️♥️
very nice explanation mam and at last your smile is speechless.......... this motivates me to see the next lecture of u without tiredness. thank u for giving us your precious time.
Ma'am we can also check the condition for 1 element in Dequeue Function i.e if there is only 1 element in the Queue , and we want to delete it , then the code would be void dequeue() { struct node*temp=front; if(front==0 && rear==0) { printf("UnderFlow Condition "); } else if(front==rear) { printf("The element which is deleted is %d ",front->data); front=rear=0; free(temp); } else { printf("The element which is deleted is %d ",front->data); front=front->next; free(temp); } } BTW Thank you so much Ma'am for this Amazing Content ❤❤
Just one note while running the code as is, the front and rear are globally initialized as NULL, so the functions dequeue(), display() and Peek() will always hit on the first condition. So, there is a need to either initialise the front and rear as local and pass those as arguments to the given functions or update the global pointers to the recent values as a whole.
Ma'm you are awesome I have learned many topics from your lectures. During this online classes .Online classes are of no use .Thank you ma'am for this Amazing lectures🙏
@Jenny, I think at 2:50 sec, we can't consider front at the right end and rear at the left end since this is a singly linked list and after deque (which will take O(n)) we can't change the rear pointer to point the previous node. What do you think? If its right. please give a like so that it will be on top and will help others.
thanks for your great explanations the data structure more fun and a lot easier with your lessons in this code there is a little problem when the front and rear pointers referring to same node because front pointer will be null otherwise rear pointer will lost the node but in that situation must refer to null so we need to add that statement to the code. #include #include struct node{ int data; struct node* next; }; struct node* front=0; struct node* rear=0; void enqueue(int data){ struct node* newNode=(struct node*)malloc(sizeof(struct node)); newNode->data=data; newNode->next=0; if(front==0&&rear==0){ front=rear=newNode; } else{ rear->next=newNode; rear=newNode; } } void dequeue(){ struct node* temp=front; if(front==0&&rear==0){ //&&rear==0 printf("empty queue "); } else if(front==rear){ //peek(); front=rear=0; free(temp); } else{ //peek(); front=front->next; free(temp); } } void display(){ struct node* temp=front; if(front==0&&rear==0){ printf("empty queue "); } else{ while(temp!=0){ printf("%d\t",temp->data); temp=temp->next; } printf(" "); } } void peek(){ if(front==0&&rear==0){ printf("empty queue "); } else printf("front data: %d ",front->data); } int main() { dequeue(); enqueue(5); enqueue(0); peek(); enqueue(-3); display(); dequeue(); dequeue(); dequeue(); dequeue(); enqueue(11); peek(); display(); return 0; }
Hello Ma'am, I have 2 questions, 1) Given that the video is about a LL implementation of a linear Q, are there any rules that a circular linked list cannot be used, in place of a singly linked list with 2 pointers? 2) And regarding your statement that a DLL using a head and tail pointer.. A DLL uses Nodes that only have a previous and next pointer right?
1) A circular LL can be used here tho it will also contain the head and tail pointer like the singly LL used here; thus practically we will be using only the semi-circle of the CLL since our enqueuing and dequeuing are restricted between the head and tail pointer. Hence the last pointer of our CLL (from last node to first node) won't be of any use and simply be using memory space. Otherwise using a CLL is as good as singly LL.
in dequeue you forgot to write the case for a single element, I mean front and rear points to same node, Which means only one element in queue, So we have to do (front=NULL and rear=NULL)
in dequeue(), there should also be a condition for when there is only 1 element in queue, that is, else if(front==rear) { Node *temp=new Node(); temp=front; front=NULL; rear=NULL; free(temp); }
Mam in deletion condition their should be one more condition that is else if(front==rear) { printf("deleted element is %d ",temp->data); front =rear=NULL; } cause in last else condition (front= front->next) that make the front to point to the next undefined memory
The best thing is that you are making videos on algorithms and data structure, there are lots of channels in youtube they do teach programming languages but not data structure and algorithms.Thanks a lot mam🙏🙏🙏
Q1qq
I tried this code but its not working ...for linked list and array as well
@@riyajaiswal2137 yes i also check code is not working if we deque element many times
@@riyajaiswal2137 that's not code, that the algorithm .
At struct datatype after} semicolon is required
Ma'am never stop making videos....teacher like u are needed are needed more and more in our society....ur explanations are supurb
waking up at 5 am every day. and seeing your face has now become a habit. thank you so much for such lovely explanations and clearing my concept. mam please make two videos on 1. Reverse a circular doubly linked list & 2. Implementation of circular queue using linked list. Thank you mam you are amazing
Your teaching makes it interesting to listen to you until the end... Because of the clarity and consistency of how you lay out your ideas.
Thank you very much Jenny. You saved me during my C days and now still saving me learning C#.
I see double beauties watching your videos.
jayanthi ma'am , u r simply superb...
keep helping us
best channel for learning DS
Mam ur lectures is awesome. To the point,No time wastage!😘😘😘😘😘
mam your way of teaching and the things you taught us I is beyond this comment section ......... You are such a great teacher and I have been in love with you and with your teaching........
dil se thanku mam ....apne sare topics bohot ache se padhaye hai ek ek chiz samaj agyi hai mere.....
Wow amazing lecture
Sabse acche meri pyari ma'am
On of the best TH-cam channel ❤
After watching this many videos I'm able to write code without watching the pseudocode of yours...thank you!
Thank you jenny ma'am for this amazing lecture.
best youtube tutor mam its uniques and direct point tq :)
1M .....Let's Go....Congo Ma'am, you deserve much more !!!!
Video not only is good but also teacher which teach,she is very amazing
Incridible class madam.I have been starting to learn data structure So I was searching good teacher.finally i have gotten your class.I have also subscribed your chanel.Love From Bangladesh.
Pyaar ho Jaye ga mam, aise padhayenge toh...❤️❤️
.
.
.
.
.
.
.
.
DS se
I struggles a.lot on this topic
But I am clear right now
Thank u mam from the bottom of my heart
Best video i have seen on DS ever, ty very much
Mam I am improving my basic knowledge on coding I have so many of doubts on coding but your teaching coding is assume I am easier to learn thank you mam😊
I used to smoke weeds but at last when you said "bye,bye take care"
I quit it,and made my 10 friends too.
But joke safat it would be a more interactive if you have coded the logic live on IDE ,at last to the point , straight and simple explanation won my heart ♥️♥️
mam thanks a lot for teaching in such a simple way that can be understood by a new person to coding like me👏👏
You are the most beautiful lecturer in this century
How the hell had I not watched such good lectures on data structures..amazing explaination ma'am 😊😊
very nice explanation mam and at last your smile is speechless.......... this motivates me to see the next lecture of u without tiredness.
thank u for giving us your precious time.
Great explanation ma'am.. Thanks to this video now I can do my home works peaceful...❤❤❤
best lectures ever on Data structures and algorithms
Thank you so much maam.Your way of Teaching is so good that even a dull student can understand easily.Our Generation is so lucky, because We have you.
Great mind with great beauty ✨✨✨✨
Thanks you mam ❤
Best Instructor Ever💯
Mam apko dekh kr apne app hi padne mai man lag jata hai.. Nice explanation
Thank You Mam So So Much🙏🙏🙏🙏
Best teacher on YT
Ma'am we can also check the condition for 1 element in Dequeue Function i.e
if there is only 1 element in the Queue , and we want to delete it , then the code would be
void dequeue()
{
struct node*temp=front;
if(front==0 && rear==0)
{
printf("UnderFlow Condition
");
}
else if(front==rear)
{
printf("The element which is deleted is %d
",front->data);
front=rear=0;
free(temp);
}
else
{
printf("The element which is deleted is %d
",front->data);
front=front->next;
free(temp);
}
}
BTW Thank you so much Ma'am for this Amazing Content ❤❤
No need if we don't use the rear in the past functions I think .
Ma'am apko jitna thank you bolo utna Kam h 😊❤ but thank you so much ma'am 💝💯 you are the best ❤🎉
One of the best teacher in the online platform we are very lucky to have a great teacher like you TQ mam
Thankyou❤❤your lectures are really good
Thank you very much. You are a genius. 👍👍🔝🔝👌👌🙏🙏
Mam becuz of you I got the confidence to write the exam
Just one note while running the code as is, the front and rear are globally initialized as NULL, so the functions dequeue(), display() and Peek() will always hit on the first condition. So, there is a need to either initialise the front and rear as local and pass those as arguments to the given functions or update the global pointers to the recent values as a whole.
grateful for this 🙏 🙏
Ma'm you are awesome I have learned many topics from your lectures. During this online classes .Online classes are of no use .Thank you ma'am for this Amazing lectures🙏
i can trust all your videos because your accuracy is around 100 percent
I tried this code but its not working...linked list and array as well for queue ...both arent working.
@Jenny, I think at 2:50 sec, we can't consider front at the right end and rear at the left end since this is a singly linked list and after deque (which will take O(n)) we can't change the rear pointer to point the previous node. What do you think? If its right. please give a like so that it will be on top and will help others.
right brother
Your teaching is best. Mam plz make videos of c programming also.
Excellent teaching ma'am👌❤
Ma'am you should come to my clg coz no facaulty is like you
And no 1 teach like as you teach🤗
Thanks for letting me understand the queue concisely.
Thank god we had an online like u mam, even ur lectures in online did it but not upto the point 😂
thanks for your great explanations the data structure more fun and a lot easier with your lessons
in this code there is a little problem when the front and rear pointers referring to same node because front pointer will be null otherwise rear pointer will lost the node but in that situation must refer to null so we need to add that statement to the code.
#include
#include
struct node{
int data;
struct node* next;
};
struct node* front=0;
struct node* rear=0;
void enqueue(int data){
struct node* newNode=(struct node*)malloc(sizeof(struct node));
newNode->data=data;
newNode->next=0;
if(front==0&&rear==0){
front=rear=newNode;
}
else{
rear->next=newNode;
rear=newNode;
}
}
void dequeue(){
struct node* temp=front;
if(front==0&&rear==0){ //&&rear==0
printf("empty queue
");
}
else if(front==rear){
//peek();
front=rear=0;
free(temp);
}
else{
//peek();
front=front->next;
free(temp);
}
}
void display(){
struct node* temp=front;
if(front==0&&rear==0){
printf("empty queue
");
}
else{
while(temp!=0){
printf("%d\t",temp->data);
temp=temp->next;
}
printf("
");
}
}
void peek(){
if(front==0&&rear==0){
printf("empty queue
");
}
else
printf("front data: %d
",front->data);
}
int main()
{
dequeue();
enqueue(5);
enqueue(0);
peek();
enqueue(-3);
display();
dequeue();
dequeue();
dequeue();
dequeue();
enqueue(11);
peek();
display();
return 0;
}
Thank you so much mam ur vedios are quit easy to understand the concepts of data structures....thank you lotzzz😊😊
to be honest I was distracted while going through the topic, its due to the beauty you hold mam.
note : while dequeue op, first we have to make temp->nxt as null and then free temp
Do we make a memory address NULL before or after we free it ?
Awesome explanation maam, this video help me a lot
You have a MALAYALI English accent...good lecture.
mam thankyou so much literally so made data structures easy peasy
Thankyou for the wonderful explanation mam your lectures very helpful in this lockdown situation
Amazing content Jenny! Keep it up.
thanks to you for saving my much time! superb!
god bless you mam.you are best teacher ever
Thank for your explanation madam your teaching is very nice and clear madam
Mind Blowing Explanation Maam thank you :))
So so thanks Ma'am... 🌻🌻🌻♥️♥️
Nice explanation mam , Thank you.
Thank you so much ! nice explanations
Crystal Clear.Thank You Very Much!!
Great Explanation.......
Thanks mam you make this topic very easy for me
mam super.i can understand ths ds through ur words
ur explaination is just awesome like you mam
Excellent Teaching Ma'am
Thank you so much 😊♥️♥️♥️
Thank you for great explanation and putting so much effort mam 🙏
Thank you so much 🙏 madam
awesome explanation mam,thanks....,plzz make videos on sorting of linklist.
Very easily explained 👌
Awesome mam....Helps a lot
Absolutely genious mam
Hello Ma'am, I have 2 questions,
1) Given that the video is about a LL implementation of a linear Q, are there any rules that a circular linked list cannot be used, in place of a singly linked list with 2 pointers?
2) And regarding your statement that a DLL using a head and tail pointer.. A DLL uses Nodes that only have a previous and next pointer right?
1) A circular LL can be used here tho it will also contain the head and tail pointer like the singly LL used here; thus practically we will be using only the semi-circle of the CLL since our enqueuing and dequeuing are restricted between the head and tail pointer. Hence the last pointer of our CLL (from last node to first node) won't be of any use and simply be using memory space. Otherwise using a CLL is as good as singly LL.
in dequeue you forgot to write the case for a single element, I mean front and rear points to same node, Which means only one element in queue, So we have to do (front=NULL and rear=NULL)
That's exactly what i was going too comment
I think there is one other way i.e., if we will use only front==0 instead of (front==0 and rear==0) at every place.
else if(head==tail){
std::cout
@@qasimalikhan9692 thanks brother
in dequeue(), there should also be a condition for when there is only 1 element in queue, that is,
else if(front==rear)
{
Node *temp=new Node();
temp=front;
front=NULL;
rear=NULL;
free(temp);
}
We can just write
free(front)
front=rear=NULL;
😅
@@pavanbhadane8334 exactly what ChatGPT just told me.
Very clear ma'am
Thank you ma'am ❤️🙏
Thank you ma'am ! That was really very helpful.
Mam why do we need to specify both front and rear while checking whether the list is empty or not. We can do it using rear only.
Please upload all videos on data structures we support you
thank you ma'am!!!!!
beautiful and very clear
Thanks ma'am 🙏🙏🙏❤️❤️
Mam, you missed discussing a case in dequeue() i.e,, when front==rear.
When front and rear is point same node
U will have to update the rear or the whole code will break;
Great 🤓
I have implemented the logic myself first and then watching the video 😁
Thnk u...😍
A beauty vth brain...❤️.
Ur d first crush and probably may be d last Mam.🥰
Very thanks is cool, this video.
I love u mam ❤😘💞😍
Mam God bless u
Where should I put void main function in program that should place in first or last ??
Thank for you teaching mam any how I understand what u said
Mam u r videos are very useful , tnq lot mam keep doing more videos have a nice day and may god bless u.
Hello why are you assigning front and rear as 0 ? 0 can be a valid node instead of assigning it as 0 can we assign it as NULL? thanks.
Mam in deletion condition their should be one more condition that is
else if(front==rear)
{
printf("deleted element is %d
",temp->data);
front =rear=NULL;
}
cause in last else condition (front= front->next) that make the front to point to the next undefined memory
Yes, I also noticed...that's why finding in comments