Skip to main content

Posts

Showing posts from January, 2018

Spring BOOT

Spring BOOT:  Spring Boot is an open-source Java-based framework used to create a Micro Service.I t explores major features of Spring Boot such as  Starters,  Auto-configuration,  Beans,  Actuator and more Spring Boot provides a good platform for Java developers to develop a stand-alone and production-grade spring application that you can  just run .  Advantages Spring Boot offers the following advantages to its developers − Easy to understand and develop spring applications Increases productivity Reduces the development time Goals Spring Boot is designed with the following goals − To avoid complex XML configuration in Spring To develop a production ready Spring applications in an easier way To reduce the development time and run the application independently Offer an easier way of getting started with the application Starters spring-boot-starter- actuator : monitor and manage your application. spring-boot-starter- data-jpa : Spring and JPA for databa...

Linkedlist :Questions

Linked List Data Structure Recent Articles Topic : Singly Linked List Circular Linked List Doubly Linked List Misc Quick Links Singly Linked List : Introduction to Linked List Linked List vs Array Linked List Insertion Linked List Deletion (Deleting a given key) Linked List Deletion (Deleting a key at given position) Find Length of a Linked List (Iterative and Recursive) Search an element in a Linked List (Iterative and Recursive) Swap nodes in a linked list without swapping data Write a function to get Nth node in a Linked List Print the middle of a given linked list Nth node from the end of a Linked List Write a function to delete a Linked List Write a function that counts the number of times a given int occurs in a Linked List Reverse a linked list Detect loop in a linked list Merge two sorted linked lists Generic Linked List in C Function to check if a singly linked list is palindrome Intersection point of two Linked Lists. Recursive...