A linked list is a linear dynamic data structure to store data items. We have already seen arrays in our previous topics on basic C++. We also know that arrays are a linear data structure that store data items in contiguous locations. Unlike arrays, the linked list does not store data items in contiguous memoryContinue reading “Stack Implementation Using Singly Linked List”
Author Archives: Arun Kumar
C program to reverse a doubly linked list
Write a C program to create a doubly linked list and reverse the linked list. How to reverse the doubly linked list in C programming. Algorithm to reverse a doubly linked list. https://repl.it/@arunkumar08/JovialNavajowhiteRecovery#main.c1 https://onlinegdb.com/rk5tnNjDD #include<stdio.h> #include<stdlib.h> void create(); int length(); void reverse(); void display();struct node { struct node *left,*right; int data; }; struct node *head=0;Continue reading “C program to reverse a doubly linked list”
Top 10 Apps Using Machine Learning in 2020 –
Do you think Machine Learning is just a fancy technology that exists “somewhere out there” and you’ve never personally used it? That’s not true! In these times, Machine Learning exists everywhere, even in your smartphone! There are multiple apps you use that apply Machine Learning ranging from Google Search to YouTube. And even Siri, yourContinue reading “Top 10 Apps Using Machine Learning in 2020 –”
How to Build Your Vocabulary(and why you need to)
Why It’s Important? A person’s ability to communicatewith fluency and exactness in allfields of knowledge increases astheir vocabulary increases. Forexample, physicians cancommunicate with one another andunderstand one another easilybecause they have been trained tounderstand the meaning of medicalterms that the average person m The reason you need to build(i.e., increase) your vocabulary isbecause failure toContinue reading “How to Build Your Vocabulary(and why you need to)”
Quantum Computer And Application in our Life.
Computers today work by converting information to a series of binarydigits, or bits, and operating on these bits using integrated circuits (ICs)containing billions of transistors. Each bit has only two possible values,0 or 1. Through manipulations of these so-called binary representations,computers process text documents and spreadsheets, create amazingvisual worlds in games and movies, and provideContinue reading “Quantum Computer And Application in our Life.”
My First Blog Post
Be yourself; Everyone else is already taken. — Oscar Wilde. This is the first post on my new blog. I’m just getting this new blog going, so stay tuned for more. Subscribe below to get notified when I post new updates.
Introduce yourself
This is an example post, originally published as part of Blogging University. Enroll in one of our ten programs, and start your blog right. You’re going to publish a post today. Don’t worry about how your blog looks. Don’t worry if you haven’t given it a name yet, or you’re feeling overwhelmed. Just click theContinue reading “Introduce yourself”