Skip to content

Commit

Permalink
Release 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Vincenzo Calabrò committed Jan 19, 2020
0 parents commit 729a1a2
Show file tree
Hide file tree
Showing 12 changed files with 2,415 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .coveralls.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# single file
coverage_clover: docs/coverage/clover/clover.xml
json_path: docs/coverage/clover/coveralls-upload.json
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/tools/
/vendor/
/docs/coverage
/.vscode/*
/composer.lock
16 changes: 16 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
language: php
php:
- 7.2

before_script:
- composer install
- pecl install ds
- echo "extension=ds.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini

script:
- composer test
- composer coverage_clover
- composer require --dev php-coveralls/php-coveralls

after_script:
- travis_retry php vendor/bin/php-coveralls -v
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2020 Calabrothers Corporation

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
236 changes: 236 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,236 @@
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">

# PHP Tree Support


[![Build Status](https://travis-ci.org/calabrothers/php-ds-tree.svg?branch=master)](https://travis-ci.org/calabrothers/php-ds-tree.svg?branch=master) [![Coverage Status](https://coveralls.io/repos/github/calabrothers/php-ds-tree/badge.svg?branch=master)](https://coveralls.io/github/calabrothers/php-ds-tree?branch=master) [![Total Downloads](https://poser.pugx.org/calabrothers/php-ds-tree/downloads)](https://packagist.org/packages/calabrothers/php-ds-tree) [![License](https://poser.pugx.org/calabrothers/php-ds-tree/license)](https://packagist.org/packages/calabrothers/php-ds-tree)

A class to support bitmask operations.
## Install
composer require calabrothers/php-ds-tree

## Test
composer install
composer test

## Tree Library
Referring to the example tree:
![TreeExampleImg](docs/imgs/tree.svg)

We can introduce the following relevant information to discuss library functionality:

<div class="container">
<table class="table">
<thead>
<tr>
<th>Set</th>
<th>Value</th>
</tr>
</thead>
<tbody>
<tr><td>Root Node</td><td>A</td></tr>
<tr><td>Leaves</td><td>{H, I, E, F, G}</td></tr>
</tbody>
</table>
</div>

Relationship with other nodes:

<div class="container">
<table class="table">
<thead>
<tr>
<th>Set</th>
<th>Value</th>
</tr>
</thead>
<tbody>
<tr><td>Children(A)</td><td>{ B , C }</td></tr>
<tr><td>Parent(B)</td><td>A</td></tr>
<tr><td>Siblings(D)</td><td>{ E, F, G }</td></tr>
<tr><td>Descendants(B)</td><td>{ D, E, H, I }</td></tr>
<tr><td>Anchestors(H)</td><td>{ D, B, A }</td></tr>
</tbody>
</table>
</div>

For each of this set, an additional set is defined including the argument itself, hence:

<div class="container">
<table class="table">
<thead>
<tr>
<th>Set</th>
<th>Value</th>
</tr>
</thead>
<tbody>
<tr><td>ChildrenAndSelf(A)</td><td>{ A, B , C }</td></tr>
<tr><td>SiblingsAndSelf(D)</td><td>{ D, E, F, G }</td></tr>
<tr><td>DescendantsAndSelf(B)</td><td>{ B, D, E, H, I }</td></tr>
<tr><td>AnchestorsAndSelf(H)</td><td>{ D, B, A }</td></tr>
</tbody>
</table>
</div>


### Static functions:
As Ds\Deque object, the Tree library provides access to the following operations:

- **apply** (change the value of the node with a callable)
- **filter** (select a subset of nodes where the condition is specified with a a callable)
- **map** (evaluate the nodes value to compute the result given with a callable)

These basic operation are provided as static functions and they operate with a given set of nodes. A magic function provide access to all the previously defined sets.

Example: Let us calculate

y = 2 x sum( Descendants(A) )

First we need to get a set of nodes given as Descendants(A), then apply a map to double the value. Finally we should sum the elements of the resulting vector.

// Let build some tree...
/*
A(1)
/ \
B(2) C(3)
/ \
D(4) E(5)

*/
$oA = new TreeNode(1);
$oB = new TreeNode(2);
$oC = new TreeNode(3);
$oD = new TreeNode(4);
$oE = new TreeNode(5);

Connect the nodes to form the tree:

// Connects the nodes
$oC->attachChild($oD);
$oC->attachChild($oE);
$oA->attachChild($oB);
$oA->attachChild($oC);

Compute the result:

// Compute 2 x Value, forall the Descendants(A)
$aValue = TreeNode::mapSet(
$oA->getDescendants(),
function ($oValue) {
return 2 * $oValue;
}
);
echo $aValue->sum()."\n"; // 28

Referring to the same tree, we can for example get the list of nodes having even value as:

// Get nodes having even value
$aEven = TreeNode::filterSet(
$oA->getNodes(),
function ($oValue) {
return $oValue % 2 == 0;
}
);

echo "(".$aEven[0]->getValue().",".$aEven[1]->getValue().")"; // (2,4)


## Tree Builder
Library provides a convenient class to help construction of trees.

The builder requires a callable, responsible to build new nodes. For example considering a tree of integer values:

$oTreeC = new TreeBuilder(
function (int $nNumber) : int {
return $nNumber;
}
);

With this information, everytime the function begin() is called, a new node is added, forwarding the parameters of the begin() function to the callable function specified in the TreeBuilder constructor.

$oTreeC
->begin(1)
->begin(2)
->end()
->begin(3)
->begin(4)
->end()
->begin(5)
->end()
->end()
->end();


It is possible for all the types with a proper __toString() method to see the node values. For instance, in this case:

echo $oTree;
// Result:
┌1
└────2
└────3
└────4
└────5
The TreeBuilder is interesting when combined with custom node class, for example, let us consider to build a Tree having as nodes the object of following class:

class TreeNodeExample {
public $nX;
public $szY;
public function __construct(int $nX, string $szY) {
$this->nX = $nX;
$this->szY = $szY;
}

public function myMultiply(int $nZ) {
$this->nX *= $nZ;
$this->szY = implode("+", array_fill(0, $nZ,$this->szY));
}

public function __toString():string {
return "($this->nX|$this->szY)";
}
}

Then we can use a TreeBuilder as:

$oTreeC = new TreeBuilder(
function (int $nX, string $szY) : TreeNodeExample {
return new TreeNodeExample($nX, $szY);
}
);
$oTreeC
->begin(1, 'one')
->begin(2, 'two')
->end()
->begin(3, 'three')
->begin(4, 'four')
->myMultiply(2) // This will call the method of TreeNodeExample! :)
->end()
->begin(5, 'five')
->myMultiply(3)
->end()
->end()
->end();

echo $oTreeC;

┌(1|one)
└────(2|two)
└────(3|three)
└────(8|four+four)
└────(15|five+five+five)

## Notes
I strongly reccomend to use PHP Ds extension rather than its equivalent Php version.
Check https://github.com/php-ds/ext-ds for more information.

### Credits
- [Vincenzo Calabrò](www.cybertronics.cloud/vc)

### Support quality code
[![Foo](https://www.paypalobjects.com/en_US/i/btn/btn_donate_LG.gif)](https://paypal.me/muawijhe)

### License

The MIT License (MIT). Please see [LICENSE](LICENSE.md) for more information.
41 changes: 41 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{
"name": "calabrothers/php-ds-tree",
"description": "PHP Tree Support",
"type": "library",
"version": "1.0.0",
"minimum-stability": "dev",
"keywords": [
"library",
"tree",
"ds"
],
"homepage": "http://www.calabrothers.com",
"license": "MIT",
"authors": [
{
"name": "Vincenzo Calabrò",
"email": "vincenzo@calabrothers.com"
}
],
"require": {
"php-ds/php-ds": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "^8.5"
},
"autoload": {
"psr-4": {
"Ds\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit --whitelist src/ tests/",
"coverage_html": "vendor/bin/phpunit --coverage-html docs/coverage/html --whitelist src/ tests/",
"coverage_clover": "vendor/bin/phpunit --coverage-clover docs/coverage/clover/clover.xml --whitelist src/ tests/"
}
}

0 comments on commit 729a1a2

Please sign in to comment.