summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex AUVOLAT <alex.auvolat@ens.fr>2013-11-18 23:03:24 +0100
committerAlex AUVOLAT <alex.auvolat@ens.fr>2013-11-18 23:03:24 +0100
commit5b1c48665dbf7534fde3d392ef76c37f7fa7cb48 (patch)
treed505388df70973b0b3ccadec575d1ee92d96e903
parentc3e202dddc68d41a57b8e6d3e93837b4b3874bd0 (diff)
downloadAlgoProg-Projet-5b1c48665dbf7534fde3d392ef76c37f7fa7cb48.tar.gz
AlgoProg-Projet-5b1c48665dbf7534fde3d392ef76c37f7fa7cb48.zip
Renamed set_bitset.c to set_bitsets.c
-rw-r--r--Makefile6
-rw-r--r--set_bitset.c136
-rw-r--r--set_bitsets.c135
-rw-r--r--sets.h6
4 files changed, 140 insertions, 143 deletions
diff --git a/Makefile b/Makefile
index 5dbe549..269ccff 100644
--- a/Makefile
+++ b/Makefile
@@ -7,7 +7,11 @@ exe_ll_test : set_test.c sets.h set_linked_lists.c sets.c
gcc -o exe_ll_test set_test.c set_linked_lists.c sets.c -DLINKEDLISTS -g
exe_bs : main.c sets.h set_bitsets.c sets.c
- # gcc -o exe_bs main.c set_bitsets.c sets.c -DBITSETS -g
+ gcc -o exe_bs main.c set_bitsets.c sets.c -DBITSETS -g
+
+exe_bs_test : set_test.c sets.h set_bitsets.c sets.c
+ gcc -o exe_ll_test set_test.c set_bitsets.c sets.c -DBITSETS -g
+
exe_tr : main.c sets.h set_treaps.c sets.c
# gcc -o exe_tr main.c set_treaps.c sets.c -DTREAPS -g
diff --git a/set_bitset.c b/set_bitset.c
deleted file mode 100644
index 24fc15a..0000000
--- a/set_bitset.c
+++ /dev/null
@@ -1,136 +0,0 @@
-#include "sets.h"
-#define SCOD sizeof(unsigned long long)
-
-int nbCells(int n){
- if(n == (n/SCOD)*SCOD)
- return n/SCOD;
- else
- return n/SCOD+1;
-}
-
-
-set empty_set(int size){
- set res;
- res.size = size;
-
- res.tab = malloc(SCOD*nbCells(size));
-}
-
-/*
-set singleton(int size, int x){
- set res = empty_set(size);
-
- if(x >= size){
- printf("Index %d out of bound %d in singleton creation\n", x, size);
- exit 1;
- }
-
- res.tab.tab[x/SCOD] = 1<<(x%SCOD);
- return res;
-}*/
-
-set copy_set(const set s){
- set res = empty_set(s.size);
- int N = nbCells(s.size()), i;
- for(i = 0; i < N; i++)
- res[i] = s[i];
- return res;
-}
-
-void delete_set(set a){
- free(a.tab);
-}
-
-void set_union_ip(set a, const set b){
- if(a.size != b.size){
- printf("Union failed : the sets don't have the same size\n");
- exit 1;
- }
- int N = nbCells(a.size()), i;
- for(i = 0; i < N; i++)
- a.tab[i] = a.tab[i]|b.tab[i];
-}
-
-void set_inter_ip(set a, const set b){
- if(a.size != b.size){
- printf("Intersection failed : the sets don't have the same size\n");
- exit 1;
- }
- int N = nbCells(a.size()), i;
- for(i = 0; i < N; i++)
- a.tab[i] = a.tab[i]&b.tab[i];
-}
-
-
-void set_diff_ip(set a, const set b){
- if(a.size != b.size){
- printf("Difference failed : the sets don't have the same size\n");
- exit 1;
- }
- int N = nbCells(a.size()), i;
- for(i = 0; i < N; i++)
- a.tab[i] = a.tab[i] & (~b.tab[i]);
-}
-
-/*
-set set_union(const set a, const set b){
- set res = copy_set(a);
- set_union_ip(res, b);
-}
-
-set set_inter(const set a, const set b){
- set res = copy_set(a);
- set_inter_ip(res, b);
-}
-
-set set_diff(const set a, const set b){
- set res = copy_set(a);
- set_diff_ip(res, b);
-}
-*/
-
-bool is_set_empty(const set s){
- int N = nbCells(s.size),i;
- for(i = 0; i < N; i++)
- if(s.tab[i] != 0)
- return false;
- return true;
-}
-
-bool set_mem(int x, const set s){
- return (s.tab[x/SCOD]>>(x%SCOD))&1;
-}
-
-int dyadic_val(unsigned long long x){
- if(x == 0){
- printf("Infinite valuation\n");
- exit 1;
- }
- int i
- for(i=0; ((x>>i)&1) == 0; i++);
- return i;
-}
-
-int elt_of_set(const set s){
- int N=nbCells(s.size), i;
- for(i=0; i<N; i++)
- if(s.tab[i] != 0)
-
- printf("No element in an empty set!\n");
- exit 1;
-}
-
-//set set_add(int x, const set s);
-
-void set_add_ip(int x, set s){
- s.tab[x/SCOD] = s.tab[x/SCOD] | 1<<(x%SCOD);
-}
-
-//set set_remove(int x, const set s);
-
-void set_remove_ip(int x, set s){
- s.tab[x/SCOD] = s.tab[x/SCOD] & (~(1<<(x%SCOD)));
-}
-
-
-
diff --git a/set_bitsets.c b/set_bitsets.c
index 4be3b4b..24fc15a 100644
--- a/set_bitsets.c
+++ b/set_bitsets.c
@@ -1,5 +1,136 @@
#include "sets.h"
+#define SCOD sizeof(unsigned long long)
+
+int nbCells(int n){
+ if(n == (n/SCOD)*SCOD)
+ return n/SCOD;
+ else
+ return n/SCOD+1;
+}
+
+
+set empty_set(int size){
+ set res;
+ res.size = size;
+
+ res.tab = malloc(SCOD*nbCells(size));
+}
+
+/*
+set singleton(int size, int x){
+ set res = empty_set(size);
+
+ if(x >= size){
+ printf("Index %d out of bound %d in singleton creation\n", x, size);
+ exit 1;
+ }
+
+ res.tab.tab[x/SCOD] = 1<<(x%SCOD);
+ return res;
+}*/
+
+set copy_set(const set s){
+ set res = empty_set(s.size);
+ int N = nbCells(s.size()), i;
+ for(i = 0; i < N; i++)
+ res[i] = s[i];
+ return res;
+}
+
+void delete_set(set a){
+ free(a.tab);
+}
+
+void set_union_ip(set a, const set b){
+ if(a.size != b.size){
+ printf("Union failed : the sets don't have the same size\n");
+ exit 1;
+ }
+ int N = nbCells(a.size()), i;
+ for(i = 0; i < N; i++)
+ a.tab[i] = a.tab[i]|b.tab[i];
+}
+
+void set_inter_ip(set a, const set b){
+ if(a.size != b.size){
+ printf("Intersection failed : the sets don't have the same size\n");
+ exit 1;
+ }
+ int N = nbCells(a.size()), i;
+ for(i = 0; i < N; i++)
+ a.tab[i] = a.tab[i]&b.tab[i];
+}
+
+
+void set_diff_ip(set a, const set b){
+ if(a.size != b.size){
+ printf("Difference failed : the sets don't have the same size\n");
+ exit 1;
+ }
+ int N = nbCells(a.size()), i;
+ for(i = 0; i < N; i++)
+ a.tab[i] = a.tab[i] & (~b.tab[i]);
+}
+
+/*
+set set_union(const set a, const set b){
+ set res = copy_set(a);
+ set_union_ip(res, b);
+}
+
+set set_inter(const set a, const set b){
+ set res = copy_set(a);
+ set_inter_ip(res, b);
+}
+
+set set_diff(const set a, const set b){
+ set res = copy_set(a);
+ set_diff_ip(res, b);
+}
+*/
+
+bool is_set_empty(const set s){
+ int N = nbCells(s.size),i;
+ for(i = 0; i < N; i++)
+ if(s.tab[i] != 0)
+ return false;
+ return true;
+}
+
+bool set_mem(int x, const set s){
+ return (s.tab[x/SCOD]>>(x%SCOD))&1;
+}
+
+int dyadic_val(unsigned long long x){
+ if(x == 0){
+ printf("Infinite valuation\n");
+ exit 1;
+ }
+ int i
+ for(i=0; ((x>>i)&1) == 0; i++);
+ return i;
+}
+
+int elt_of_set(const set s){
+ int N=nbCells(s.size), i;
+ for(i=0; i<N; i++)
+ if(s.tab[i] != 0)
+
+ printf("No element in an empty set!\n");
+ exit 1;
+}
+
+//set set_add(int x, const set s);
+
+void set_add_ip(int x, set s){
+ s.tab[x/SCOD] = s.tab[x/SCOD] | 1<<(x%SCOD);
+}
+
+//set set_remove(int x, const set s);
+
+void set_remove_ip(int x, set s){
+ s.tab[x/SCOD] = s.tab[x/SCOD] & (~(1<<(x%SCOD)));
+}
+
-struct _set {
- };
diff --git a/sets.h b/sets.h
index 44114d1..2a2e8b1 100644
--- a/sets.h
+++ b/sets.h
@@ -12,12 +12,10 @@
#include <stdbool.h>
#ifdef BITSETS
-struct set{
+typedef struct {
int N;
unsigned long long* tab;
-};
-
-typedef struct set set;
+} set;
#endif
#ifdef LINKEDLISTS