163 subscribers
3.42K photos
24 videos
39 files
371 links
Link: @java_posts

Contact: java.response.email@gmail.com
Download Telegram
SpiralPatternExample1
608.4 KB
Spiral Pattern Java Program
#Source_code
#82
Java Program to Display Odd Numbers From 1 to 100
#Source_code
#83
Java
Java Program to Display Odd Numbers From 1 to 100 #Source_code #83
#Outout for this program is:
List of odd numbers from 1 to 100:

1 3 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 71 73 75 77 79 81 83 85 87 89 91 93 95 97 99
code.png
563.4 KB
Determine whether a string matches with a given pattern.
Given a string and a pattern, determine whether a string matches with a given pattern. The solution should not use any regex.
#Source_code
#Data_structure
#84
Java
code.png
#Data_structure
#Output
#84
Example inputs for a given Data Structure:

Input:
string: codesleepcode
pattern: XYX

Output:
X: code
Y: sleep


Input:
string: codecodecode
pattern: XXX

Output:
X: code
DiffOddEven.png
759.6 KB
Java Program to calculate the Difference between the Sum of the Odd Level and the Even Level Nodes of a Binary Tree
#Source_code
#85
Media is too big
VIEW IN TELEGRAM
For those of you who are facing midterm exams, project deadlines or just dealing with time management😅.
#meme
code.png
229 KB
Java Program to Count the Total Number of Punctuation Characters Exists in a String
#Source_code
#86
Java
code.png
#Output
#86
Output:
The number of punctuations exists in the string is: 5
Java long to String
#Source_code
#87
Java long to String Example 2
#Source_code
#88
Java example program to convert String to Float.
#Source_code
#89
Java Program to add two matrices
We can add two matrices in java using binary + operator. A matrix is also known as array of arrays. We can add, subtract and multiply matrices
#Source_code
#90
Bit Hacks – Playing with the rightmost set bit of a number
#Source_code
#Data_structure
#91
Single linked list Example in Java
#Source_code
#Data_structure
#92
SinglyLinkedList2
476.6 KB
Singly Linked List Example in Java
Example 2
#Source_code
#Data_structure
#93