Skip to content

Instantly share code, notes, and snippets.

View nehuenlabs's full-sized avatar

Marcello Corleone nehuenlabs

  • @nehuen->labs
  • Web
View GitHub Profile
@gtke
gtke / Quick Find Algorithm
Created September 2, 2012 21:57
Quick Find Algorithm Java Implementation
public class quickFind {
private int [] id;
public void QuickFindUF (int N){
id = new int [N];
for(int i = 0; i< N; i++){
id[i]=i;
}
}