Skip to main content

Posts

Showing posts with the label easiest way to learn programming

Find the length of string without using length method in java

In This tutorial we are going to see on of the tricky java coding question for fresher where they will be asked to write code to find length of any string without using any inbuild function or method. How to Find the length of string without using length method in java ? Lets see how we can do it  checkout the video mentioned below to understand each line of code, we will also debug the code and see what is happening in each line of code. Git repo:- https://github.com/pushpendragupta1993/DataStructureAndAlgorithms/blob/master/src/com/training/StringLength.java Find the length of string without using length method in java find length of string, learn java with me, find length of string how to find length of string in java. easiest way to learn coding easiest way to learn programming easiest way to understand Data structure easiest way to undestand algorithms easiest way to debug java easiest way to understand programs easiest way to understand java program easiest way to un...

Find all the substring of any string without repetitions.

In This tutorials we will see one of java coding question asked in various interview question and coding challenge before interview How to Find all the substring of any string without repetitions ? We will see each step of the implementation and understand each step with the logic and concepts why we are using this concept. lets check out below video to understand each step while we debug each step one by one Git Repo:- https://github.com/pushpendragupta1993/DataStructureAndAlgorithms/tree/master/src/com/training Find all the substring of any string without repetitions. learn with Krishna Sandeep, durga sir, durga,java, java brains, java tutorial,java tutorial for beginners,java programming,java basics for beginners,java coding for beginners, java by durga sir ,java by pushpendra Gupta, print all substrings for a string, print substrings, print all substrings of a string,durga sir java videos, easiest way to learn coding, easiest way to learn programming, easiest way to understan...

How to implement stack using array in java | Stack Implementation using Array

In This tutorial we will see one of the most frequently asked java interview question which is basically asked in most of the product based question. you must understand this implementation from array data structure to stack. how to implement stack using array. you need to write code in such a way that you use array and achieve all the functionality/Method of the stack as mentioned below  push  -  Insert/add element in the stack pop - Remove element from top of the stack peek - Return element from top of the stack (do not remove) Check out the video with complete details and explanation of each steps, also see debugging each line code and understand the concept behind the implementation git repo:- https://github.com/pushpendragupta1993/DataStructureAndAlgorithms/blob/master/src/com/training/StackCustom.java How to implement stack using array in java, Stack Implementation using Array stack in data structure,data structures tutorials, operating system, data structure and a...