1
0
mirror of https://gitlab.com/klmp200/LO27.git synced 2024-06-29 11:28:03 +00:00
LO27/main.c

31 lines
772 B
C
Raw Normal View History

2016-12-10 01:28:10 +00:00
/*********************************************************************************
* File Name : main.c
* Created By : klmp200
* Creation Date : [2016-12-10 01:06]
* Last Modified : [2016-12-10 01:07]
2016-12-10 20:11:46 +00:00
* Description :
2016-12-10 01:28:10 +00:00
**********************************************************************************/
#include <stdio.h>
#include <stdlib.h>
2016-12-10 01:28:10 +00:00
#include <CellElement.h>
2016-12-10 22:21:17 +00:00
#include <list.h>
2016-12-10 20:11:46 +00:00
int main(int argc, char **argv){
cellElement * tree = NULL;
tree = CreateCellElem();
tree->colIndex = 1;
AddNextRow(tree);
tree->nextRow->colIndex = 2;
AddNextCol(tree);
tree->nextCol->colIndex = 3;
recursivePrint(tree);
removeNextRow(tree);
removeNextCol(tree);
recursivePrint(tree);
2016-12-10 01:28:10 +00:00
return 0;
2016-12-10 20:11:46 +00:00
2016-12-10 01:28:10 +00:00
}