-
Notifications
You must be signed in to change notification settings - Fork 0
/
strings.java
297 lines (232 loc) · 7.95 KB
/
strings.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
import java.util.*;
public class strings {
// public static void printletters(String str) {
// System.out.println(str.charAt(7));
// for(int i = 0 ; i < str.length();i++){
// System.out.print(str.charAt(i) + " ");
// }
// System.out.println();
// }
// // Method 1;
// public static boolean checkPalindrome(String str) {
// int start = 0 ;
// int end = str.length()-1;
// for(int i = 0 ; i < str.length() ; i++ ){
// if(str.charAt(start) != str.charAt(end)){
// return false;
// }
// start++;
// end--;
// }
// return true;
// }
// // // Method 2;
// public static boolean palindrome(String str) {
// int n = str.length();
// for(int i = 0 ; i < n/2 ; i++){
// if(str.charAt(i) != str.charAt(n-1-i)){
// return false;
// }
// }
// return true;
// }
// public static float direction(String way){
// int x_Axis = 0 , y_Axis = 0;
// for(int i = 0; i<way.length() ; i++){
// // north
// if(way.charAt(i) == 'N'){
// y_Axis += 1;
// }
// // South
// if(way.charAt(i) == 'S'){
// y_Axis -= 1;
// }
// // East
// if(way.charAt(i) == 'E'){
// x_Axis += 1;
// }
// // West
// if(way.charAt(i) == 'W'){
// x_Axis -= 1;
// }
// }
// return (float)Math.sqrt(x_Axis*x_Axis + y_Axis*y_Axis);
// }
// public static String subString(String str, int si , int ei){
// String sub = "";
// for(int i = si ; i < ei ; i++ ){
// sub += str.charAt(i);
// }
// return sub;
// }
// public static String upperCase(String str) {
// StringBuilder s = new StringBuilder("");
// char c = Character.toUpperCase(str.charAt(0));
// s.append(c);
// for(int i = 1 ; i < str.length() ; i++){
// if(str.charAt(i) == ' ' && i < str.length()-1){
// s.append(str.charAt(i));
// i++;
// s.append(Character.toUpperCase(str.charAt(i)));
// }
// else{
// s.append(str.charAt(i));
// }
// }
// return s.toString();
// }
// public static String compression(String str){
// String newstr = "";
// for(int i = 0 ; i < str.length() ; i++){
// Integer count = 1 ;
// while(i < str.length()-1 && str.charAt(i) == str.charAt(i+1)){
// count++;
// i++;
// }
// newstr += str.charAt(i);
// if(count > 1){
// newstr += count.toString();
// }
// }
// return newstr;
// }
// public static String compressionUsingBuilder(String str){
// StringBuilder s = new StringBuilder("");
// for(int i = 0 ; i < str.length() ; i++){
// Integer count = 1;
// while(i < str.length()-1 && str.charAt(i) == str.charAt(i+1)){
// count++;
// i++;
// }
// s.append(str.charAt(i));
// if(count > 1){
// s.append(count.toString());
// }
// }
// return s.toString();
// }
// public static int getVowels(String str) {
// int count = 0;
// for(int i = 0 ; i < str.length() ; i++){
// char c = str.charAt(i);
// if(c == 'a' || c == 'e' || c == 'i' || c == 'o' || c == 'u' ){
// count++;
// }
// else{
// count += 0;
// }
// }
// return count;
// }
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
// // *** Concatenate
// System.out.println("Enter firstname");
// String firstname = sc.nextLine();
// System.out.println("Enter lasttname");
// String lastname = sc.nextLine();
// String fullname = firstname + " " + lastname ; //--> using Concatenate
// System.out.println(fullname);
// printletters(fullname);
// // *** Palindrome
// System.out.println("Enter the word");
// String str = sc.next();
// boolean ans = checkPalindrome(str) ;//-->Method 1
// // boolean ans = palindrome(str); //-->Method 2
// if(ans == true ){
// System.out.println("It is palindrome");
// }
// else{
// System.out.println("It is not palindrome");
// }
// // *** Shortest Path
// String path = "WNEENESENNN";
// System.out.println(direction(path));
// // *** Comparision
// String s1 = "habibi";
// String s2 = "habibi";
// String s3 = new String("habibi");
// // if(s1 == s2){
// // System.out.println("Both are Equal");
// // }
// // else{
// // System.out.println("Both are Not Equal");
// // }
// // if(s1 == s3){ // == does not work for all conditions
// // System.out.println("Both are Equal");
// // }
// // else{
// // System.out.println("Both are Not Equal");
// // }
// if(s1.equals(s3)){ //--> .equals compares the value
// System.out.println("Both are Equal");
// }
// else{
// System.out.println("Both are Not Equal");
// }
// // *** SubStrings
// String str = "Habibi Welcome to Dubai";
// // System.out.println(subString(str,0 ,10));
// System.out.println(str.substring( 0, 5)); // --> Inbuilt
// // *** Largest in a String
// String fruits[] = {"apple" , "banana" , "mango"} ;
// String largest = fruits[0] ;
// for(int i = 1 ; i < fruits.length;i++){
// if(largest.compareToIgnoreCase(fruits[i]) < 0){
// largest = fruits[i];
// }
// }
// System.out.println("largest = " + largest);
// // // *** String builder
// StringBuilder name = new StringBuilder("revi");
// name.toString();
// System.out.println(name);
// StringBuilder a = new StringBuilder("");
// for(char c = 'a' ; c <= 'z' ; c++){
// a.append(c);
// }
// System.out.println(a);
// System.out.println(a.length());
// System.out.println(a.charAt(17));
// // *** convert each first letter of each word to Uppercase
// System.out.println("enter the words");
// String words = sc.nextLine() ;
// System.out.println(upperCase(words));
// // ***String Compression
// String s = "aaabbcdddd";
// System.out.println(compression(s));
// // *** String Compression using StringBuilder
// String s = "aaabbcdddd";
// System.out.println(compressionUsingBuilder(s));
// // *** Count how many times lowercase vowels occurred in a String entered by the user
// System.out.println("Enter the words ");
// String words = sc.nextLine();
// System.out.println(getVowels(words));
// // **check the output for the following code
// String str="ShradhaDidi";
// String str1="ApnaCollege";
// String str2="ShradhaDidi";
// System.out.println(str.equals(str1) +" "+str.equals(str2));
// // **check the output for the following code
// String str="ApnaCollege".replace("l","");
// System.out.println(str);
// // *** Check if strings are anagrams
// String one = "race";
// String two = "care";
// one = one.toLowerCase();
// two = two.toLowerCase();
// if(one.length() == two.length()){
// char a[]= one.toCharArray();
// char b[] = two.toCharArray();
// Arrays.sort(a);
// Arrays.sort(b);
// boolean result = Arrays.equals(a,b);
// if(result){
// System.out.println("They areAnagrams");
// }
// else {System.out.println("They are not Anagrams");}
// }
// else {
// System.out.println("They are not Anagrams");}
}
}