Posts

Showing posts from December, 2023

travel vlog? yep it is!!

πŸŒˆπŸŒ„   Starting new era with this beautiful moments!!!after hectic week of college life you can find students @restaurants, beaches, dancing, but my personnel hell is hill, it brings peace for my soul, jogging in mud road @5:30 am what can I ask more from nature!! this instances are taken in Coorg which is known as Scotland of India I never been there since from my childhood this experience was dream come true ! I would love to share my incredible experience this is just a sneak peak . it was astonishing bike ride delight for eyes the both sides with green trees. plus after travelling for more than 4+ hours we saw many view points every view points says different story mostly they inspire you to achieve our goals that's the most magical thing happens when we change a place or we visit a different places occasionally. coming back to trekking yep we had a beast bike GT650 TWIN continental. I must say it was amazing experience .had to trek 3-4 kilometers, visited a bunch of places wh...

DATA STRUCTRES TOPICS

Image
  Arrays- It Is a linear data STRUCTURE used to store homogenous elements in continuous manner. its a linear data structure. storing the data sequentially(one by one). arrays have index , elements can be accessed by index. index always starts from 0. arrays can be represented as a[2]. Linked listπŸ™‚ it is also linear data structure. each elements are called as nodes. which will consists two items 1.data and 2.address of the next node. most important word:- node {example:- train}. node➖ node basically have two parts data(information). addresses(of next node) TYPES OF linked list➖ SINGLY LINKED LIST. DOUBLY LINKED LIST. 1. SINGLY LINKED LIST. every node contains both data and reference (address) this can travel in one direction only. the last node address will be null. DOUBLY LINKED LIST. linked list. insertion in linked list case1: insertion at first node case2: insertion @end of the node case3: insertion in between node. case3: insert a...