Metadata-Version: 2.1
Name: algo_fun_dfs_traversal_order
Version: 0.2.0
Summary: get the dfs traversal order of a given graph using preorder traversal
Home-page: https://gitlab.com/ChristopheLagaillarde/algo_fun_dfs_traversal_order
Author: Christophe Lagaillarde
Author-email: chrislag94@gmail.com
License: MIT
Description-Content-Type: text/markdown
License-File: LICENSE

# 🚀Dfs traversal order

## 📄Description

This project get the Dfs traversal order of a given graph using preorder traversal.

## ⚙️ Installation

clone the repository (git must be installed)
```
git clone https://gitlab.com/ChristopheLagaillarde/algo_fun_dfs_traversal_order.git 
```
or you can install it using pip

```
pip install algo-fun-dfs-traversal-order
```

or take the gz file on gitlab and use this command

```
tar -xzf algo_fun_dfs_traversal_order-0.2.0.tar.gz
```

## ✅Verification

You can have my public key on here: 
https://keyserver.ubuntu.com/pks/lookup?search=309F4D460B9BF1BD8DD31EAB39A61CA659ADD6E3&fingerprint=on&op=index

Take it and to verify that the integrity and authenticity of my project. You should be able to use this command to do so. 

```
gpg --verify algo_fun_dfs_traversal_order-0.2.0.tar.gz.asc algo_fun_dfs_traversal_order-0.2.0.tar.gz
```

## 🕹️Usage

You have to import it using this command

```
from algo_fun.get_dfs_traversal_order import get_dfs_traversal_order
```

You can use the function as follow

```
graph = {
	'A': ['B', 'C'],
	'B': ['D'],
	'C': ['E'],
	'D': [''],
	'E': ['']
}

get_dfs_traversal_order(graph)
```

## 📝LICENSE
Copyright (c) 2024 Christophe Lagaillarde 

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.
