Skip to content

Instantly share code, notes, and snippets.

View shonenada's full-sized avatar
🤷‍♂️
Focusing

Yaoda Liu shonenada

🤷‍♂️
Focusing
View GitHub Profile
@shonenada
shonenada / DFrame.java
Created December 12, 2012 10:54
my notepad in java
package Notepad;
import java.awt.*;
import javax.swing.*;
import java.awt.Toolkit;
public abstract class DFrame extends JFrame{
/**
@shonenada
shonenada / kmp.java
Created December 12, 2012 10:50
kmp in java
package Notepad;
public class KMP {
static int[] getNext(String p){
int i=1,j=0;
int[] next = new int[p.length()+2];
char[] pattern = p.toCharArray();
next[0] = -1;