Coder Social home page Coder Social logo

zeda's Introduction

ZEDA - Elementary Data and Algorithms

Copyright (C) Tomomichi Sugihara (Zhidao) since 1998


[What is this?]

ZEDA is a collection of frequently used data structures and algorithms including:

  • bit operations
  • array operation
  • list operation
  • tree operation
  • round-robin table
  • string operations
  • command line option manipulation
  • generalized I/O stream
  • random number generator
  • ZTK format parser
  • CSV file manipulation
  • XML parser (wrapper of libxml2)

[Installation / Uninstallation]

install

Move to a directly under which you want to install ZEDA, and run:

% git clone https://github.com/zhidao/zeda.git
% cd zeda

Edit PREFIX in config file if necessary in order to specify a directory where the header files, the library and some utilities are installed. (default: ~/usr)

  • header files: $PREFIX/include/zeda
  • library file: $PREFIX/lib
  • utilities: $PREFIX/bin

Then, make and install.

% make && make install

uninstall

Do:

% make uninstall

which removes $PREFIX/lib/libzeda.so and $PREFIX/include/zeda.


[How to use]

Set your PATH and LD_LIBRARY_PATH environment variables. This is done by:

% export PATH=$PATH:$PREFIX/bin
% export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$PREFIX/lib

for Bourne shell family (bash, zsh, etc.), or by:

% set path = ( $path $PREFIX/bin )
% setenv LD_LIBRARY_PATH $LD_LIBRARY_PATH:$PREFIX/lib

for C shell family (csh, tcsh, etc.).

When you want to compile your code test.c, for example, the following line will work.

% gcc `zeda-config -L` `zeda-config -I` test.c `zeda-config -l`

[Documents]

Download doxygen from http://www.doxygen.org/ and run:

% make document

to generate HTML documents under doc/.


[Contact]

[email protected]

zeda's People

Contributors

zhidao avatar categoryik avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.