Smiljana Knezev wrote
> Dear all,
>
> I've written about implementing binary search trees:
> https://pharokeepers.github.io/pharo/2019/07/07/SmiljanaBinarySearchTreeinPharo.html
>
> Feedback and opinions is always welcome :)
>
> Best regards,
> Smiljana Knezev
Your implementation is unnecesaril
I agree #bfs: is not explicit, but #breadthFirstSearch: is a well
know term, why not just that? Or even #breathFirstSearchFor:
In comparison #findBreadthFirst: and #findDeepFirst: feel a bit
awkward to me.
(I think its the repetition rhythm of "f" words)
cheers -ben
On Mon, 8 Jul 2019 at 1
Thank you all very much. This is quite useful for me and I can learn a lot.
best regards,
Smiljana Knezev
сре, 10. јул 2019. у 12:29 Ben Coman је написао/ла:
> I agree #bfs: is not explicit, but #breadthFirstSearch: is a well
> know term, why not just that? Or even #breathFirstSearchFor:
>
>
--- Begin Message ---
Hello Smiljana,
Thanks for having written down this document. I am not expert in algorithm, so
I would consider myself a simple user. I have developed complex software for
some times and I have never seen the need of having a binary search tree. I
guess this is probably pa
Hello everyone,
I'm trying to write a Linux init script for a Pharo application. I'm
using a bash script wrapper to launch pharo. This script executes the
pharo script provided by get.pharo.org.
This is my wrapper script:
#! /bin/bash
cd "$(dirname "$0")"
./pharo myapp.image start.st &
PID=
Binary search is extremely useful to quickly find something in a sorted
collection, like finding if a string or number is included in a large
collection.
BTW, we already have an implementation, see
SequenceableCollection>>#findBinary: and friends.
> On 10 Jul 2019, at 18:53, Alexandre Bergel
On Wed, Jul 10, 2019 at 9:53 AM Alexandre Bergel via Pharo-users <
pharo-users@lists.pharo.org> wrote:
> Hello Smiljana,
>
> Thanks for having written down this document. I am not expert in
> algorithm, so I would consider myself a simple user. I have developed
> complex software for some times an
On 10/07/19 10:30 PM, Sebastián Filippini wrote:
Hello everyone,
I'm trying to write a Linux init script for a Pharo application. I'm
using a bash script wrapper to launch pharo. This script executes the
pharo script provided by get.pharo.org.
./pharo myapp.image start.st &
PID=$!
echo $PID
On Thu, 11 Jul 2019 at 00:53, Alexandre Bergel via Pharo-users
wrote:
>
> Hello Smiljana,
>
> Thanks for having written down this document. I am not expert in algorithm,
> so I would consider myself a simple user. I have developed complex software
> for some times and I have never seen the need