fullstack共85篇
String,Wrapper Class,Stringbuffer,String split()-拾光赋

String,Wrapper Class,Stringbuffer,String split()

String,Wrapper Class,Stringbuffer,String split(),String: Strings are used for storing text. A String variable contains a collection of characters surrounded by double quotes. Strin...
kity的头像-拾光赋kity7天前
03313
Object Class in Java-拾光赋

Object Class in Java

Object Class in Java,Object Class in Java Object class in Java is present in java.lang package. Every class in Java is directly or indirectly derived from the Object class. If a cl...
kity的头像-拾光赋kity8天前
0487
matrix multipilication,matrix addision-拾光赋

matrix multipilication,matrix addision

matrix multipilication,matrix addision,matrix multipilication: package afterfeb13; public class matrixmulti { public static void main(String[] args) { int[][] a = { { 1, 3, 5 }, { ...
kity的头像-拾光赋kity11天前
02012
Multidimensional array--matrix-拾光赋

Multidimensional array–matrix

Multidimensional array--matrix,Gross matrix:X package afterfeb13; public class multidimarray { public static void main(String[] args) { int[][] mark = { { 10, 20, 80 }, { 40, 50, 6...
kity的头像-拾光赋kity15天前
04615
Missing number,Reverse Number,subarray with a given sum-拾光赋

Missing number,Reverse Number,subarray with a given sum

Missing number,Reverse Number,subarray with a given sum,Missing number: package afterfeb13; public class missingnum { public static void main(String[] args) { int[] arr = { 10, 20,...
kity的头像-拾光赋kity16天前
03415
majority element(Moore’s Voting Algorithm)-拾光赋

majority element(Moore’s Voting Algorithm)

majority element(Moore’s Voting Algorithm),Given an array arr. Find the majority element in the array. If no majority exists, return -1. A majority element in an array is an eleme...
kity的头像-拾光赋kity17天前
0488
Why I Started Blogging About Full-Stack Java Development-拾光赋

Why I Started Blogging About Full-Stack Java Development

Why I Started Blogging About Full-Stack Java Development,Hello Dev.to! I’m Manar Jebali, a Software Engineering Student currently diving deep into the world of Full-Stack Java Dev...
kity的头像-拾光赋kity17天前
0256
count of letter-拾光赋

count of letter

count of letter,1) Frequency of Each letter in a given String(key != '*') 2) Non-repeated char. in a given String(count==1) 3) Repeated Char. in a given String(count>1) 4) First...
kity的头像-拾光赋kity17天前
04412
Java Full Stack Developer Roadmap for Beginners-拾光赋

Java Full Stack Developer Roadmap for Beginners

Java Full Stack Developer Roadmap for Beginners,Java remains one of the most prominent programming languages, ranking 4th in the TIOBE Index for 2024 and 2nd globally and in India ...
kity的头像-拾光赋kity17天前
0376
binary search,linear search-拾光赋

binary search,linear search

binary search,linear search,Java Program for Linear Search In the world of computer science, searching algorithms are fundamental techniques for retrieving information from data st...
kity的头像-拾光赋kity18天前
0529
Bubble Sort,Selection Sort-拾光赋

Bubble Sort,Selection Sort

Bubble Sort,Selection Sort,Bubble Sort Algorithm Bubble Sort is the simplest sorting algorithm that works by repeatedly swapping the adjacent elements if they are in the wrong orde...
kity的头像-拾光赋kity19天前
02315
swapping in array-拾光赋

swapping in array

swapping in array,Java Program to Swap Two Numbers Problem Statement: Given two integers m and n. The goal is simply to swap their values in the memory block and write the java cod...
kity的头像-拾光赋kity21天前
04910