https://github.com/azzaare/compressedstacks.cpp
Compressed structure for Stack Algorithms
Science Score: 23.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
✓codemeta.json file
Found codemeta.json file -
○.zenodo.json file
-
○DOI references
-
✓Academic publication links
Links to: arxiv.org -
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (12.4%) to scientific vocabulary
Keywords
Repository
Compressed structure for Stack Algorithms
Basic Info
- Host: GitHub
- Owner: Azzaare
- License: mit
- Language: C++
- Default Branch: master
- Homepage: https://github.com/Azzaare/CompressedStacks.cpp/wiki
- Size: 1.01 MB
Statistics
- Stars: 3
- Watchers: 5
- Forks: 1
- Open Issues: 0
- Releases: 2
Topics
Metadata Files
README.md
CompressedStacks.cpp
The CompressedStacks.cpp module/library implements the compressed stack structure. This data structure behaves like a usual stack with the usual push and pop operations, but has the additional advantage that it uses less memory. Intuitively, when large blocks of information are pushed into the stack it compresses the bottom part (only stores partial information). This information is recomputed whenever it is needed afterwards. See the paper of Barba et al. for more details on this structure. More information about the implementation can be found in Baffier et al.
Please consult the wiki of this project for further details such as : speed and memory consumption tests, more details about installation, examples, and more.
Description of Stack Algorithms
This structure works mostly as a normal stack (handling push and pop operations, as well as being able to access the top k elements of the stack, for some small k). Note that this structure can only be used with sequential deterministic algorithms. We model these algorithms with the template StackAlgo whose only implemented function implemented is the run operation in which we scan the whole input (see code below).
cpp
template <class T, class D> void StackAlgo<T, D>::run() {
initStack();
while (notEndOfFile()) {
D data = readInput(line);
while (notEmptystack()) {
if (popCondition(data)) {
prePop(data);
elt = pop();
postPop(elt,data);
} else {
noPop(data);
}
}
if (pushCondition(data)) {
prePush(data);
push(data);
postPush(data);
} else {
noPush(data);
}
}
reportStack();
}
Use case
Concrete examples such as a basic test run and the upper hull problems can be found in the wiki.
Abstract example : Instance<T,D,I>
An instance of a Stack Algorithm is described by a set of templates parameters T, D, and I and a set of methods used in the run function above.
```cpp // T is the type of the context, D is the type of the input data and I is the type of your integer indexes.
class Instance: public StackAlgo
bool popCondition(D data);
void prePop(D data);
void postPop(D data, Data
bool pushCondition(D data);
void prePush(Data
void reportStack(); }; ```
How to run your problem
Suppose the class Instance implements the interface StackAlgo<T, D, I>. You can run an instance of your problem described in the input located at filepath. The last command just print an output in the console of your compressed stack after the run.
cpp
Instance stack(filePath);
stack.run();
stack.println();
Contributing
This project is far from being complete and would benefit greatly from future contributions. Commented code, following the existing file structure is strongly preferred. Please contact one of the author (or create an issue) in case of need. Here is a short sample of possible contributions : * Use CI (continuous integration). Definitively the most wanted feature * Extends the compressed stack structure to a dequeue structure (push and pop from top and bottom) * Add other problems to the examples folder (following, if possible a similar structure) * Extends the compressed stack structure to a compressed tree search structure * Dynamic size compressed stack.
Credits
Although this project is a joint work, based on the theoretical work in Barba et al., credits belong to specific authors for part of the implementation. The work covering the implementation of the Stack Algorithm framework, the Compressed Stack structure and extras functionalities (include and extras repositories) has been done by Jean-Francois Baffier. All the examples and their generating algorithms, along with all the test have been implemented by Yago Diez. The class design and project overview was done by Matias Korman
License
This project is an open source software under the MIT license. Please check the LICENSE file for further information.
Owner
- Name: Jean-Francois Baffier
- Login: Azzaare
- Kind: user
- Location: Tokyo
- Website: https://baffier.fr
- Twitter: bioazzaare
- Repositories: 34
- Profile: https://github.com/Azzaare
Jean-François Baffier is an academic researcher and a consultant in Artificial Intelligence, Big Data Science, Data Structures, and Algorithms.
GitHub Events
Total
Last Year
Issues and Pull Requests
Last synced: 6 months ago
All Time
- Total issues: 2
- Total pull requests: 0
- Average time to close issues: 9 months
- Average time to close pull requests: N/A
- Total issue authors: 1
- Total pull request authors: 0
- Average comments per issue: 0.0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 0
- Pull requests: 0
- Average time to close issues: N/A
- Average time to close pull requests: N/A
- Issue authors: 0
- Pull request authors: 0
- Average comments per issue: 0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
- Azzaare (2)