Welcome to Code Forum!

Join a community that supports you and your coding journey from day one. We strive to be a friendly, supportive community that empowers everyone to be better developers. By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!
  • Guest, before posting your code please take these rules into consideration:
    • It is required to use our BBCode feature to display your code. While within the editor click < / > or >_ and place your code within the BB Code prompt. This helps others with finding a solution by making it easier to read and easier to copy.
    • You can also use markdown to share your code. When using markdown your code will be automatically converted to BBCode. For help with markdown check out the markdown guide.
    • Don't share a wall of code. All we want is the problem area, the code related to your issue.

    GIF shows where to locate </> in the thread and or post editor toolbar.
    To learn more about how to use our BBCode feature, review our "How to post your code into threads" here.

    Thank you, Code Forum.

C An open source data structures and algorithms library.

user001

Coder
Hi, there. I want to introduce an open source data structures and algorithms library here.
This is the repository of the library: https://github.com/coshcage/StoneValley
Since Cpp has a STL library to handle data structures while C doesn't have.
I wrote this StoneValley library for users who wanted to manipulate data structures.
Please come here and check this if you want and don't hesitate to send me instructions to refine this library.
I will also write some texts to explain how to use this library too in the future.
And thanks for checking and replying, have a nice day!
svlogo.png
 
Hi User001

Did you know that if you rename README to README.md in GitHub, you automatically get all the markdown formatting benefits.
Thanks for noticing. But my intention was to create a plain text file that any body on any environment could read it. Despite the markdown parser could parse README file in to a better format. When I was writing this library, I hoped this library could be compiled in a large number of platform so that you could even use TYPE command to view README file on DOS, or use cat command under Linux shell. By the way do you have any suggestions to this library?
 
Yeah, text files... In my projects I opted for markdown anyway since it is readable enough in unrendered text format.

From what I see, you implemented in your library a lot more than I ever knew to exist as an elaborated standard data structure (I'm a self taught programmer).

I remember implementing linked lists and vector arrays on my own in C a long time ago for my own purposes.

I didn't notice any license file in your library GitHub page. Is that on purpose?
 
Yeah, text files... In my projects I opted for markdown anyway since it is readable enough in unrendered text format.

From what I see, you implemented in your library a lot more than I ever knew to exist as an elaborated standard data structure (I'm a self taught programmer).

I remember implementing linked lists and vector arrays on my own in C a long time ago for my own purposes.

I didn't notice any license file in your library GitHub page. Is that on purpose?
License information is in the README file.
The whole project is published under Public Domain license.(Basically no license...Users can alter it and republish it as they whish.)
You are a self taught programmer, that's awesome!
 

Buy us a coffee!

Buy me a coffee.
Back
Top Bottom