Skip to main content

Transfer google play balance to Paytm, PhonePe, Google Pay or any UPI linked bank account.

To transfer google play balance, opinion rewards or gift cards to PayPal, Paytm, PhonePe, Google Pay or any UPI ID linked bank account , you can use QxCredit :Rewards Convertor app which is available on google play store: You will get back 80% of the google play balance. App link:  https://play.google.com/store/apps/details?id=qxcoding.qx_credit_reboot Follow these steps to transfer your play balance to paypal or UPI: 1) download app from play store. 2) login with your google account and phone number. 3) choose a token amount which you want to convert/transfer. 4) Enter your payout details.(UPI ID or PayPal Email) 5) wait for an acknowledgement mail form qxcredit containing information about your purchased token. 6) you will receive the amount within 3 days. 7) if you face any issues you can raise a query on website: https://qx-credit.web.app/#/contact_support About app: Introducing QxCredit : Rewards Converter Convert /Transfer or Exchange your Google Play Balance and opinion r

How to find the occurrence's of a pattern in a given string Using KMP algorithm?

For finding the pattern in a given string , we are going to use KMP algorithm for individual occurrence of the pattern and print the reference index of the original string.



The function which will find the pattern in a given string :

int KMP(char * str,char* find,int s){
     int sl=strlen(str);
     int fl=strlen(find);
     for(int i=s;i<sl-fl+1;i++){
         int i1=i;
         for(int j=0;j<fl;j++,i1++){
             //cout<<j<<fl<<endl;
             if(j==fl-1)return i;
             if(str[i]!=find[j])break;
         }
     }
     return -1;
 }
For finding all the places (positions/index) where the pattern is present, we have to call the above function repetitively with passing the index from where it has to resume the search as a parameter to the function.
The same is implemented in the function below:
int print_occurence(char* str,char* find){
     int sl=strlen(str);
     int fl=strlen(find);
     int occ=0;
     for(int i=0;i<sl;i++){
         i=KMP(str,find,i);
         if(i==-1){
             //printf("NO pattern found in string\n");
             return occ;
         }
         printf("pattern found at %d position\n",i+1);
         i+=fl;
         occ++;
     }
     return occ;
The driving function:
int main(int argc, char *argv[]) {
     char str[]="hello hello world";
     char find[]="llo";
     printf("Number of occurences found= %d\n",print_occurence(str,find));
     return 0;
 }
Source code C/C++ :

//  https://www.qxcoding.com/ 
include<stdio.h>
include<string.h>        
int KMP(char * str,char* find,int s){
     int sl=strlen(str);
     int fl=strlen(find);
     for(int i=s;i<sl-fl+1;i++){
         int i1=i;
         for(int j=0;j<fl;j++,i1++){
             //cout<<j<<fl<<endl;
             if(j==fl-1)return i;
             if(str[i]!=find[j])break;
         }
     }
     return -1;
 }
 int print_occurence(char* str,char* find){
     int sl=strlen(str);
     int fl=strlen(find);
     int occ=0;
     for(int i=0;i<sl;i++){
         i=KMP(str,find,i);
         if(i==-1){
             //printf("NO pattern found in string\n");
             return occ;
         }
         printf("pattern found at %d position\n",i+1);
         i+=fl;
         occ++;
     }
     return occ;
 }
 int main(int argc, char *argv[]) {
     char str[]="hello hello world";
     char find[]="llo";
     printf("Number of occurences found= %d\n",print_occurence(str,find));
     return 0;
 }

if any doubts or queries please comment 🙂

Comments

  1. Casino and Table Games Near Me - The MJ Hub
    The best and worst casinos near me 충청남도 출장샵 on our list · Hollywood 춘천 출장마사지 Casino 과천 출장마사지 at Charles Town 거제 출장안마 Races and Casinos · Sugarhouse at Chittenango Casino · 창원 출장안마 Harrah's Resort Tunica

    ReplyDelete

Post a Comment

Popular posts from this blog

Python and C++ program to implement multiplication of 2d array (Matrix multiplication)

Here, in this program we are going to implement matrix multiplication , suppose matrix 1 has dimensions:m*n and matrix 2 has dimensions :p*q for these two matrix to be multiplied we need to have the number of columns in matrix 1(n) equal to the number of rows in matrix 2(p), if the condition is satisfied then the result of multiplication will be a matrix of order m*q in multiplication the elements of the resultant matrix will be the sum of product of corresponding elements of row(of M1) and column(of M2) //first element in 1st row in given example: res[0][0]+=mat1[0][i] * mat2[i][0] where 0<i<n or p //second element in 1st row: res[0][1]+=mat1[0][i] * mat2[i][1] where 0<i<n or p and so on………… Example : Input : 1 2 3 1 4 5 6 2 7 8 9 3 Output : 14 32 50 Input : 4 3 4 2 4 1 1 1 Output : multiplication not possible n!=p Here goes the main execution part where the calculation is been done: for ( int i = 0 ; i < r1 ; i ++) for ( int

Transfer google play balance to Paytm, PhonePe, Google Pay or any UPI linked bank account.

To transfer google play balance, opinion rewards or gift cards to PayPal, Paytm, PhonePe, Google Pay or any UPI ID linked bank account , you can use QxCredit :Rewards Convertor app which is available on google play store: You will get back 80% of the google play balance. App link:  https://play.google.com/store/apps/details?id=qxcoding.qx_credit_reboot Follow these steps to transfer your play balance to paypal or UPI: 1) download app from play store. 2) login with your google account and phone number. 3) choose a token amount which you want to convert/transfer. 4) Enter your payout details.(UPI ID or PayPal Email) 5) wait for an acknowledgement mail form qxcredit containing information about your purchased token. 6) you will receive the amount within 3 days. 7) if you face any issues you can raise a query on website: https://qx-credit.web.app/#/contact_support About app: Introducing QxCredit : Rewards Converter Convert /Transfer or Exchange your Google Play Balance and opinion r

What is AI (Artificial Intelligence )? and its characteristics

Definition : Artificial intelligence  (AI) is the ability of a  computer program  or a  machine  to think and learn. It is also a field of study which tries to make computers "smart". They work on their own without being encoded with commands. Types of AI : REACTIVE MACHINES:  The most basic type of AI is purely reactive ,it does not store any memory of past or predict ( calculate ) future happenings. This type of AI is only applicable to specific applications and the principle is choosing the best decision among several options. examples: Deep Blue, IBM’s chess-playing supercomputer LIMITED MEMORY :  this type 2 kind of AI machines are distinct from reactive machine in such a way that it can make optimum decisions based on the past information ( data ). examples: self driving cars. THEORY OF MIND:  The understanding that people,creatures and objects can have thoughts or emotions which effect their own behavior. This point is the important divide