#include <stdio.h>
#include <string.h>
#include <iostream>
#include <string>
#include <sys/time.h>
#include <cmath>
// MEHMET ERIM RABIN-KARP
using namespace std;
int W = 997;
int S = 256;
unsigned int hash(string s,int len){
unsigned int h = 0;
for(int k=0;k<len;k++){
h=(h*S+s[k])%W;
}
return h;
}
void search(string pattern, string text)
{
int m = pattern.size();
int n = text.size();
cout << "Size of text = "<< n << endl ;
cout << "Size of pattern = "<< m << endl ;
int patternHash = 0; // pattern hashcode
int textHash = 0; // text hashcode
int SPower = 1;
//to Canculate SPOWER
for (int i = 0; i < m - 1; i++)
SPower = (SPower * S) % W;
// cout << "SPower = "<< SPower << endl;
// hashing
for (int i = 0; i < m; i++)
{
patternHash = (S*patternHash + pattern[i])%W;
textHash = (S*textHash + text[i])%W;
}
for (int i = 0; i <=(n-m); i++)
{
if (patternHash == textHash)
{
printf("Pattern found at index %d \n", i);
}
// rehashing
textHash = ((S*(textHash - text[i]*SPower) + text[i+m])%W+W)%W;
// cout << patternHash << " " << textHash << endl;
}
}
int main()
{
string pattern = "AA";
string text = "AA";
search(pattern,text);
return 0;
}
Cluster modülü sayesinde, birden fazla CPU çekirdeğinden yararlanarak bir Node.js uygulamasının performansını ve ölçeklenebilirliğini geliştirmek için kullanılabilir.
MIPS Assembly programlama dilinde yazılmış üs alma ( Xn ) programıdır.Üs sonuçunu $s4 registerına kaydeder. Kod.datax .word 701y .word 701.textmain addi $16,$0,0 # i degeri ( üs ka
MIPS Assembly programlama dilinde yazılmış yaşınızı saate çeviren program.Consoldan aldığı değerlerle işlem yapar. Kod# örnek program yaşanan yıl değerinin ekrandan girilmesiyle bu d
PS Assembly programlama dilinde yazılmış üs alma ( Xn ) programıdır.Consoldan aldığı değerlerle işlem yapar.Üs sonuçunu $s0 registerına kaydeder. Kod.datastr .asciiz x=str1 .asciiz
import java.applet.Appletimport java.awt.Colorimport java.awt.Graphicspublic class ucgen extends Applet implements Runnable{ private int x int y int z int t
import java.applet.Appletimport java.awt.Colorimport java.awt.Graphicsimport java.awt.event.MouseEventimport java.awt.event.MouseListenerimport java.awt.event.MouseMotionListen
import java.awt.*import java.applet.Appletimport java.awt.event.MouseEventimport java.awt.event.MouseMotionListenerpublic class mouseekseni extends Applet implements MouseMo
import java.awt.*import java.applet.Appletpublic class merdiven extends Applet { public void paint(Graphics a){ int sayac=0 //TOP NASIL ZIPLATILIR
import java.applet.Appletimport java.awt.*import javax.swing.JOptionPanepublic class Joptionapplet extends Applet { String sayi1,sayi2 int buyuksayi public void ini