From 4c60e18161971e3c7fb297240864ba3bdfa79ac5 Mon Sep 17 00:00:00 2001 From: Naej Date: Sun, 1 Jan 2017 23:21:27 +0100 Subject: [PATCH 1/2] added algos --- LibMatrix/list.c | 5 - LibMatrix/matrix.c | 6 -- report.md | 257 ++++++++++++++++++++++++++++++++++++++++++++- 3 files changed, 253 insertions(+), 15 deletions(-) diff --git a/LibMatrix/list.c b/LibMatrix/list.c index 19f7156..e54b495 100644 --- a/LibMatrix/list.c +++ b/LibMatrix/list.c @@ -188,11 +188,6 @@ int deleteListContent(List *list){ while (current != NULL){ toDelete = current; current = current->next; -/* - if (toDelete->data != NULL){ - FreeCellElement(toDelete->data); - } -*/ free(toDelete); } list->head = NULL; diff --git a/LibMatrix/matrix.c b/LibMatrix/matrix.c index 36d47f2..dade5b0 100644 --- a/LibMatrix/matrix.c +++ b/LibMatrix/matrix.c @@ -263,7 +263,6 @@ bool setCellValue(Matrix matrix, int ColPos, int RowPos,bool value){ } void printMatrix(Matrix matrix){ -/* Non optimisé : debug fx */ int i = 0; int j = 0; bool b; @@ -666,8 +665,3 @@ bool equalsMatrix(Matrix m1, Matrix m2){ return true; } - -/* todos : -*faire les fontions débiles qui restent -*ecrire doc -*/ diff --git a/report.md b/report.md index 0da7ccb..807cdfd 100644 --- a/report.md +++ b/report.md @@ -8,7 +8,7 @@ The goal of this project is to provide a library containing a new abstract data type called **Matrix** with associated function to manipulate them. The final program have to enable a user to test the library in an interactive and practical way. -Since we decided to not store false value in our matrix, we decided not to worry too much about performances and we encapsulated all access to stored data in the Matrix structure to avoid too much complexity and allow more modularity, readability and re-usability. We created high level tools to manipulate our matrix and used it all along the project. +Since we decided to not store false value \footnote{cellElement does not contains values anymore, their existence is their value}in our matrix and to not store the colElement and rowElement \footnote{they are unified and renamed as listElement}that are empty, we decided not to worry too much about performances and we encapsulated all access to stored data in the Matrix structure to avoid too much complexity and allow more modularity, readability and re-usability. We created high level tools to manipulate our matrix and used it all along the project. For compilation we didn't used the **-ansi** flag since we had to deal with both clang and gcc for compilation and clang didn't accept this flag. Instead, we used the **-std=c89** flag witch contains the same rules but is accepted on both softwares. Compiling with **-ansi** still works. @@ -21,10 +21,218 @@ Every function and data type are described in the documentation given with the p # Algorithmic -The most interesting function are *getCellValue* and *setCellValue*. Those are the one we rely on the most. They are our way of dealing with our complex data structure allowing us to avoid to store false values. They are the functions that need the more computational power on the long run but are really useful due to their level of abstraction and their high level. +The most interesting function are *getCellValue* and *setCellValue*. Those are the one we rely on the most. They are our way of dealing with our complex data structure allowing us to avoid to store false values. They are the functions that need the more computational power on the long run but are really useful due to their level of abstraction and their high level. + +*getCellValue* is a simple function based on *findMatrixElem* : ```C +getCellValue(matrix:Matrix, ColPos:integer , RowPos:integer ) : bool +BEGIN + if ( colCount(matrix) <= ColPos OR rowCount(matrix) <= RowPos) + getCellValue <- ERROR + endif + if (findMatrixElem( matrix , ColPos , RowPos ) == NULL) + getCellValue <- false + endif + + getCellValue <- true +END + +findMatrixElem( matrix:Matrix , ColPos:integer, RowPos:integer ) : *cellElement +BEGIN + Row:ListElement <- NULL + elem:*cellElement <- NULL + + Row <- getElementPos(rows(matrix),RowPos) + if (Row == NULL) + findMatrixElem <- NULL + endif + + elem <- data(Row) + + while (elem != NULL AND colIndex(elem) != ColPos) + elem <- nextCol(elem) + endwhile + + findMatrixElem <- elem; +END +``` + +*setCellValue* is a simple function based on *createMatrixElem* and *deleteMatrixElement* : +```C +setCellValue(matrix:Matrix, ColPos:integer, RowPos:integer,value:bool):bool +BEGIN + if (value == true) + setCellValue <- createMatrixElem(matrix,ColPos,RowPos) + else + if ( deleteMatrixElem(matrix,ColPos,RowPos) >= 0 ) + setCellValue <- true + else + setCellValue <- false + endif + endif +END + +createMatrixElem( matrix:Matrix, ColPos:integer, RowPos:integer):bool + Row:*ListElement <-NULL + Col:*Listelemnt <- NULL + + error:integer = 0 + + elem: *cellElement <- NULL + tmp: *cellElement<- NULL + + if (colCount(matrix) <= ColPos OR rowCount(matrix) <= RowPos ) + createMatrixElem <- ERROR + endif + + elem <- CreateCellElem() + SetPositionIndex(elem,ColPos,RowPos) + + Row <- getElementPos(rows(matrix),RowPos) + if (Row != NULL AND Row->data != NULL) + + if (colIndex(data(Row)) == ColPos) + error ++ + else + if (colIndex(data(Row)) > ColPos) + nextCol(elem) <- data(Row) + data(Row) <- elem + endif + else + tmp <- data(Row) + + while ( nextCol(tmp) != NULL AND nextCol(colIndex(tmp)) < ColPos) do + tmp <- nextCol(tmp) + endwhile + + if ( nextCol(tmp) == NULL OR colIndex(nextCol(tmp)) > ColPos) + nextCol(elem) <- nextCol(tmp) + nextCol(tmp) <- elem + else + error ++ + endif + endif + + else + push(rows(matrix),elem) + pos(tail(rows(matrix))) <- RowPos + endif + + Col <- getElementPos(cols(matrix),ColPos) + if (Col != NULL AND data(Col) != NULL) + + if (rowIndex(data(Col)) == RowPos) + error ++ + else + if (rowIndex(data(Col)) > RowPos) + nextRow(elem) <- data(Col) + data(Col) <- elem + endif + else + tmp <- data(Col) + while (nextRow(tmp) != NULL AND rowIndex(nextRow(tmp)) < RowPos) do + tmp = nextRow(tmp) + endwhile + + if (nextRow(tmp) == NULL OR rowIndex(nextRow(tmp)) > RowPos) + nexRow(elem) <- nextRow(tmp) + newRow(tmp) <- elem + else + error ++ + endif + endif + + else + push(cols(matrix),elem) + pos(tail(cols(matrix))) = ColPos; + endif + + + if (error != 0) + FreeCellElement(elem) + createMatrixElem <- true + else + createMatrixElem <- false + endif + +END + +deleteMatrixElem(matrix:Matrix,ColPos:integer, RowPos:integer ):integer +BEGIN + elem : *cellElement <- NULL + tmp : *cellElement <- NULL + + Row : *ListElement <- NULL + Col : *ListElement <- NULL + + elem <- findMatrixElem(matrix,ColPos,RowPos) + if (elem == NULL) + deleteMatrixElem <- 0 + endif + + Row <- getElementPos(rows(matrix),RowPos) + if (Row == NULL) + deleteMatrixElem <- -1 + endif + + if (Row->data == NULL) + removeElementPos(rows(matrix),RowPos) + deleteMatrixElem <- -1 + endif + + if (colIndex(data(Row)) == ColPos) + data(Row) <- nextCol(elem) + else + tmp <- data(Row) + + while (nextCol(tmp) != NULL AND nextCol(tmp) != elem) do + tmp <- nextCol(tmp) + endwhile + + if (tmp->nextCol != NULL) + nextCol(tmp) <- nextCol(elem) + endif + + endif + + if (data(Row) == NULL){ + removeElementPos(rows(matrix),RowPos) + } + + + Col = getElementPos(cols(matrix),ColPos) + if (Col == NULL) + deleteMatrixElem <- -2 + endif + + if (Col->data == NULL){ + removeElementPos(cols(matrix),ColPos) + deleteMatrixElem <- -1; + endif + if (rowIndex(data(Col)) == RowPos) + data(Col) <- nextRow(elem) + else + tmp <- data(Col) + while (nextRow(tmp) != NULL AND nextRow(tmp) != elem) do + tmp <- nextRow(tmp) + endwhile + + if (nextRow(tmp) != NULL) + nextRow(tmp) <- nextRow(elem) + endif + + endif + + if (data(Col) == NULL) + removeElementPos(cols(matrix),ColPos) + endif + + FreeCellElement(elem) + deleteMatrixElem <- 1 + +END ``` Functions *andColSequenceOnMatrix* and *orColSequenceOnMatrix* are implemented with *colSequenceOnMatrix* and are really not interesting so we're gonna provide the algorithm of the last one : @@ -51,8 +259,8 @@ BEGIN endif colCount(newM) <- colCount(m) - 1 - for i from 0 to colCount(m) - 2, step 1 - for j from 0 to rowCount(m) - 2, step 1 + for i from 0 to colCount(m) - 2 do + for j from 0 to rowCount(m) - 2 do a <- getCellValue(m, i, j) b <- getCellValue(m, i + 1, j) if operator(a, b) then @@ -67,6 +275,47 @@ END Here are the algorithm of the function *applyRules* and all the one related to it : ```C +applyRules ( matrix:Matrix, Rules:integer, N:integer):Matrix +BEGIN + RulesMatrix :integer[9] + i:integer <- 0 + power:integer <- 2 + sum:integer <- 0 + j:integer <- 0 + + tempMatrix1:Matrix + tempMatrix2:Matrix + + if (Rules <= 0 OR N < 1) + applyRules <- matrix; + endif + + while(power <= 512) do + + RulesMatrix[i] <- Rules%power - sum + sum <- Rules%power + + if (RulesMatrix[i]!=0) + i++ + endif + + power <- power*2 + + endwhile + + tempMatrix1 <- matrixFromRules(matrix, i, RulesMatrix) + + for j from 0 to N do + tempMatrix2 <- matrixFromRules(tempMatrix1 ,i, RulesMatrix) + freeMatrix(tempMatrix1) + + tempMatrix1 <- tempMatrix2 + endfor + + applyRules <- tempMatrix1 + +END + ``` From 462f5b13ce6210f71122ca4a80a72c31b7ce694f Mon Sep 17 00:00:00 2001 From: Naej Date: Sun, 1 Jan 2017 23:30:49 +0100 Subject: [PATCH 2/2] 1ere correction algos --- report.md | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/report.md b/report.md index 807cdfd..9872337 100644 --- a/report.md +++ b/report.md @@ -55,7 +55,7 @@ BEGIN elem <- nextCol(elem) endwhile - findMatrixElem <- elem; + findMatrixElem <- elem END ``` @@ -78,7 +78,7 @@ createMatrixElem( matrix:Matrix, ColPos:integer, RowPos:integer):bool Row:*ListElement <-NULL Col:*Listelemnt <- NULL - error:integer = 0 + error:integer <- 0 elem: *cellElement <- NULL tmp: *cellElement<- NULL @@ -91,7 +91,7 @@ createMatrixElem( matrix:Matrix, ColPos:integer, RowPos:integer):bool SetPositionIndex(elem,ColPos,RowPos) Row <- getElementPos(rows(matrix),RowPos) - if (Row != NULL AND Row->data != NULL) + if (Row != NULL AND data(Row) != NULL) if (colIndex(data(Row)) == ColPos) error ++ @@ -133,7 +133,7 @@ createMatrixElem( matrix:Matrix, ColPos:integer, RowPos:integer):bool else tmp <- data(Col) while (nextRow(tmp) != NULL AND rowIndex(nextRow(tmp)) < RowPos) do - tmp = nextRow(tmp) + tmp <- nextRow(tmp) endwhile if (nextRow(tmp) == NULL OR rowIndex(nextRow(tmp)) > RowPos) @@ -146,7 +146,7 @@ createMatrixElem( matrix:Matrix, ColPos:integer, RowPos:integer):bool else push(cols(matrix),elem) - pos(tail(cols(matrix))) = ColPos; + pos(tail(cols(matrix))) <- ColPos endif @@ -177,7 +177,7 @@ BEGIN deleteMatrixElem <- -1 endif - if (Row->data == NULL) + if (data(Row) == NULL) removeElementPos(rows(matrix),RowPos) deleteMatrixElem <- -1 endif @@ -191,25 +191,25 @@ BEGIN tmp <- nextCol(tmp) endwhile - if (tmp->nextCol != NULL) + if (nextCol(tmp) != NULL) nextCol(tmp) <- nextCol(elem) endif endif - if (data(Row) == NULL){ + if (data(Row) == NULL) removeElementPos(rows(matrix),RowPos) - } + endif - Col = getElementPos(cols(matrix),ColPos) + Col <- getElementPos(cols(matrix),ColPos) if (Col == NULL) deleteMatrixElem <- -2 endif - if (Col->data == NULL){ + if (data(Col) == NULL) removeElementPos(cols(matrix),ColPos) - deleteMatrixElem <- -1; + deleteMatrixElem <- -1 endif if (rowIndex(data(Col)) == RowPos) data(Col) <- nextRow(elem) @@ -268,7 +268,7 @@ BEGIN endif endfor endfor - colSequenceOnMatrix <- newM; + colSequenceOnMatrix <- newM END ``` @@ -287,7 +287,7 @@ BEGIN tempMatrix2:Matrix if (Rules <= 0 OR N < 1) - applyRules <- matrix; + applyRules <- matrix endif while(power <= 512) do