项目作者: ryukinix

项目描述 :
Data Structures in C: Linked Lists
高级语言: C
项目地址: git://github.com/ryukinix/c-lists.git
创建时间: 2015-06-17T15:17:52Z
项目社区:https://github.com/ryukinix/c-lists

开源协议:GNU General Public License v3.0

下载


C-lists =: some classes

This repository have a few codes made in ANSI C with implementation of lists subclass:

  • queue
  • stack
  • deque

The implementation was divided in “static” and “dynamic”; the static implementation uses just vectors and dynamic use linkeds lists.

Usage

Clone this repository and after it, open a terminal session on the working directory, use make and execute the program you wish:

  • make

After the compiling, all the binaries will be are on the build folder.

Contributing

  1. Fork it!
  2. Create your feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -am 'Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request :D

History

my-delicious-state

Race, life’s a race
And I’m gonna win
Yes, I’m gonna win
I’ll light the fuse and I’ll never lose

And I choose to survive, whatever it takes
You won’t pull ahead
I’ll keep up the pace
I’ll reveal my strength to the whole human race

Yes, I am prepared to stay alive
And I won’t forgive, vengeance is mine
And I won’t give in, because I choose to thrive
Yes, I’m gonna win.

Race, it’s a race
And I’m gonna win
Yes, I’m gonna win
I’ll light the fuse and I’ll never lose

And I choose to survive, whatever it takes
You won’t pull ahead ’cause I’ll keep up the pace
I’ll reveal my strength to the whole human race
Yes, I’m gonna win.

Contributors

License

GPLv3

Roadmap

  • [X] make an abstract type
  • [X] auxiliar functions for static and dynamic lists
    • [X] RandomList
    • [X] Erase (any element)
    • [X] ClearList
  • [X] queue
    • [X] static
      • [X] push
      • [X] pop
      • [X] search
      • [X] edit
    • [X] dynamic
      • [X] push
      • [X] pop
      • [X] search
      • [X] edit
  • [X] stack
    • [X] static
      • [X] push
      • [X] pop
      • [X] search
      • [X] edit
    • [X] dynamic
      • [X] push
      • [X] pop
      • [X] search
      • [X] edit
  • deque
    • [X] static
      • [X] push
        • [X] push_left
        • [X] push_right
      • [X] pop
        • [X] pop_left
        • [X] pop_right
      • [X] search
      • [X] edit
    • [X] dynamic
      • [X] push
        • [X] push_left
        • [X] push_right
      • [X] pop
        • [X] pop_left
        • [X] pop_right
      • [X] search
      • [X] edit