RE: Differences of Stack and List data structures

2017-10-01 Thread stayfirefo...@outlook.com
You guys are right, I should search for answer by myself.




Re: Differences of Stack and List data structures

2017-10-01 Thread Mike Pechkin
hi,

good startpoints:
http://rosettacode.org/wiki/Stack#PicoLisp
http://rosettacode.org/wiki/Singly-linked_list/Element_definition#PicoLisp


On Sun, Oct 1, 2017 at 3:49 PM, stayfirefo...@outlook.com <
stayfirefo...@outlook.com> wrote:

>
>
>
>
> Sent from Mail <https://go.microsoft.com/fwlink/?LinkId=550986> for
> Windows 10
>
> Hello everyone,
>
> What are all differences of stack and list data structures?
>


Re: Differences of Stack and List data structures

2017-10-01 Thread Michel Pelletier
This is not a PicoLisp specific question.  I'm sure many of us here want to
encourage your interest in general programming concepts, but there are much
better venues for you to get answers to questions like this.  For example,
on youtube the Kahn Academy has excellent tutorials on programming, while
most of them are in the Python programming language, the concepts are
entirely general and translate to all languages, including all lisps.  You
will likely find many lisp tutorials there as well.  As for stacks vs
lists, wikipedia has excellent articles on both:

https://en.wikipedia.org/wiki/Stack_(abstract_data_type)

https://en.wikipedia.org/wiki/Linked_list

You will get detailed responses to your questions on this list if you
constrain them to topics related to PicoLisp.

-Michel

On Sun, Oct 1, 2017 at 5:49 AM, stayfirefo...@outlook.com <
stayfirefo...@outlook.com> wrote:

>
>
>
>
> Sent from Mail <https://go.microsoft.com/fwlink/?LinkId=550986> for
> Windows 10
>
> Hello everyone,
>
> What are all differences of stack and list data structures?
>


Differences of Stack and List data structures

2017-10-01 Thread stayfirefo...@outlook.com


Sent from Mail<https://go.microsoft.com/fwlink/?LinkId=550986> for Windows 10
Hello everyone,
What are all differences of stack and list data structures?