Typo fix patch (#154)

* Update README.md

fix typo 
./README.md:14: seperated ==> separated

* Update string-tokeniser.cpp

fix typo 
./strings/c-or-cpp/string-tokeniser.cpp:27: delimeter ==> delimiter

* Update palindrome.js

fix typo 
./strings/js/palindrome.js:4: alpha-numeric ==> alphanumeric

* Update quick-sort.java

fix typo
./sorting/java/quick-sort.java:2: choosen ==> chosen

* Update counting-sort.java

fix typo 
./sorting/java/counting-sort.java:4: algortithm ==> algorithm

* Update merge-sort.java

fix typo 
./sorting/java/merge-sort.java:12: Funtion ==> Function

* Update bubble-sort.cpp

fix typo 
./sorting/c-or-cpp/bubble-sort.cpp:21: swaping ==> swapping

* Update and rename Insert_and_delete_beginning.c to Insert-and-delete-beginning.c

fix typo 
./linked-lists/c-or-cpp/Insert_and_delete_beginning.c:18: Intialize ==> Initialize
and rename the file according to contribution guidlines

* Update Insert-and-delete-beginning.c

fix typo 
./linked-lists/c-or-cpp/Insert_and_delete_beginning.c:37: beggining ==> beginning

* Update bellman-ford.cpp

fix typo 
./graphs/c-or-cpp/bellman-ford.cpp:80: weigth ==> weight

* Update README.md

fix typo 
./stacks/README.md:5: Paranthesis ==> Parenthesis

* Rename balanced-paranthesis.cpp to balanced-parenthesis.cpp

fix typo in name of the file

* Update linear-search.cpp

fix typos 
./searching/c-or-cpp/linear-search.cpp:22: inputed ==> inputted
./searching/c-or-cpp/linear-search.cpp:24: inputed ==> inputted
pull/155/head
Arsenic 2021-04-10 14:40:32 +05:30 committed by GitHub
parent 183a3a660e
commit f515542235
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
12 changed files with 19 additions and 19 deletions

View File

@ -11,7 +11,7 @@ The directory tree has the following convention of `category/language/problem`,
A unit `problem` must conform to the following specifications: A unit `problem` must conform to the following specifications:
- The name should be in lowercase. (**Eg.** `palindrome/`, `binary-search.cpp` etc.). - The name should be in lowercase. (**Eg.** `palindrome/`, `binary-search.cpp` etc.).
- Each word must be seperated by a **dash** or a **hyphen** (`-`). - Each word must be separated by a **dash** or a **hyphen** (`-`).
**If you have a problem that belongs to a new *topic* or *category* than one which are present:** **If you have a problem that belongs to a new *topic* or *category* than one which are present:**
1. Create a new folder and an index for it inside (a readme, `README.md` file). 1. Create a new folder and an index for it inside (a readme, `README.md` file).

View File

@ -77,7 +77,7 @@ int main()
vector<int>dist; vector<int>dist;
bool neg = bellman_ford(graph,V,s,dist); bool neg = bellman_ford(graph,V,s,dist);
//if no negative weigth cycle is found... //if no negative weigt cycle is found...
if(neg) if(neg)
{ {
cout<<"vertex Dist from Source\n"; cout<<"vertex Dist from Source\n";
@ -89,4 +89,4 @@ int main()
return 0; return 0;
} }

View File

@ -15,7 +15,7 @@ struct node *current = NULL ;
//Function to Print the Linked List //Function to Print the Linked List
void printList(){ void printList(){
printf("\nItem in the Linked List are : "); printf("\nItem in the Linked List are : ");
// Intialize the ptr(pointer) with head location . // Initialize the ptr(pointer) with head location .
struct node *ptr = head ; struct node *ptr = head ;
// While Loop until we encounter a Node which is NULL . // While Loop until we encounter a Node which is NULL .
// NULL , signifies we are the end of the list . // NULL , signifies we are the end of the list .
@ -34,7 +34,7 @@ void insertBeg(int data){
link->data = data ; link->data = data ;
//Point the link's pointer to the current head //Point the link's pointer to the current head
link->next = head ; link->next = head ;
//Update the Head to the node we want to insert at the beggining //Update the Head to the node we want to insert at the begining
head = link ; head = link ;
} }

View File

@ -19,9 +19,9 @@ int main()
cout<<array[i]<<" "; cout<<array[i]<<" ";
cout<<"\n"; cout<<"\n";
cout<<"please enter the number which you want to find in the inputed array \n"; cout<<"please enter the number which you want to find in the inputted array \n";
cin>>key; cin>>key;
cout<<"the inputed no is at position \n"; cout<<"the inputted no is at position \n";
for(i=0;i<n;++i) for(i=0;i<n;++i)
{ {

View File

@ -18,7 +18,7 @@ int main()
for (int j= 0; j< n-1; j++) for (int j= 0; j< n-1; j++)
{ //comparing adjecent elements of array { //comparing adjecent elements of array
if (arr[j]>arr[j+1]) if (arr[j]>arr[j+1])
{ // swaping array elements { // swapping array elements
temp = arr[j]; temp = arr[j];
arr[j] = arr[j+1]; arr[j] = arr[j+1];
arr[j+1] = temp; arr[j+1] = temp;
@ -30,4 +30,4 @@ int main()
cout<<arr[i]<<" "; cout<<arr[i]<<" ";
} }
return 0; return 0;
} }

View File

@ -1,7 +1,7 @@
public class CountingSort { public class CountingSort {
/** /**
* Public method to use the counting sort algortithm * Public method to use the counting sort algorithm
* @param arr - the array in input * @param arr - the array in input
*/ */
public void sort(int[] arr){ public void sort(int[] arr){

View File

@ -9,7 +9,7 @@ class MergeSortApp
arr = new int[]{12,54,222,54622,10,169,30}; //Array to sort arr = new int[]{12,54,222,54622,10,169,30}; //Array to sort
} }
//Funtion to display/Print Array //Function to display/Print Array
public void printArray() public void printArray()
{ {
for (int i=0;i<arr.length;i++) for (int i=0;i<arr.length;i++)
@ -76,4 +76,4 @@ class MergeSort
ob.mergesort(); ob.mergesort();
ob.printArray(); ob.printArray();
} }
} }

View File

@ -1,5 +1,5 @@
// Java program for implement Quick Sort // Java program for implement Quick Sort
//Note: Rightmost element in the array is choosen as pivot //Note: Rightmost element in the array is chosen as pivot
class QuickSortBack class QuickSortBack
{ {
private int[] arr; private int[] arr;
@ -78,4 +78,4 @@ class QuickSort
ob.quickSort(); //call quickSort ob.quickSort(); //call quickSort
ob.displayArray(); ob.displayArray();
} }
} }

View File

@ -2,4 +2,4 @@
### C or C++ ### C or C++
1. [Balanced Paranthesis](c-or-cpp/balanced-paranthesis.cpp) 1. [Balanced Parenthesis](c-or-cpp/balanced-parenthesis.cpp)

View File

@ -40,4 +40,4 @@ int main() {
else else
cout << "Not Balanced"; cout << "Not Balanced";
return 0; return 0;
} }

View File

@ -24,7 +24,7 @@ char* mystrtok(char* s, char d)
// Start extracting string and // Start extracting string and
// store it in array // store it in array
for (; input[i] != '\0'; i++) { for (; input[i] != '\0'; i++) {
// If delimeter is not reached // If delimiter is not reached
// then add the current character // then add the current character
// to result[i] // to result[i]
if (input[i] != d) if (input[i] != d)

View File

@ -1,7 +1,7 @@
// JavaScript Palindrome Checker: Checks whether a word is the same in reverse. Ignores punctuation, capitalization & spaces. // JavaScript Palindrome Checker: Checks whether a word is the same in reverse. Ignores punctuation, capitalization & spaces.
function isPalindrome(str) { function isPalindrome(str) {
// First convert the string into proper alpha-numeric word // First convert the string into proper alphanumeric word
let properStr = str let properStr = str
.replace(/[_\W]/g, "") .replace(/[_\W]/g, "")
.toLowerCase(); .toLowerCase();
@ -19,4 +19,4 @@ function isPalindrome(str) {
// Output to the console // Output to the console
console.log(isPalindrome("eye")); console.log(isPalindrome("eye"));
console.log(isPalindrome("Mr. Owl ate my metal worm")); console.log(isPalindrome("Mr. Owl ate my metal worm"));
console.log(isPalindrome("RAce C*_aR")); console.log(isPalindrome("RAce C*_aR"));