We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
#!/bin/bashdraw_blank_lines(){foriin$(seq$1);doprintf%"100"s|tr" ""_"|sed's/$/\n/'done}# to get the "right" answer we have to add 18 "_" to the left side# and 19 "_" to the right side since we use a 63-column box in our calculations# instead of a 100-column box in order to properly draw all the trees togetherfix_width(){sed's/^/__________________/'|sed's/$/___________________/'}# Natural Natural# takes two numbers that represent a number of "_" before "1"# and after "1" accordingly and draws a linedraw_line(){printf%"$1"s|tr" ""_"printf"1"printf%"$2"s|tr" ""_"}# Width Height# Natural Natural#_____1_______1_____#______1_____1______#_______1___1_______#________1_1________#_>_______1_________#_>_______1_________#_>_______1_________#_>_______1_________draw_stalk(){letbefore=$1/2letafter=$1/2foriin$(seq$2);dodraw_line$before$afterprintf"\n"done}# Width Height# Natural Natural#_>___1_______1_____#_>____1_____1______#_>_____1___1_______#_>______1_1________#_________1_________#_________1_________#_________1_________#_________1_________draw_fork(){letleft_a=0letright_b=0letleft_b=($1/2)-1letright_a=($1/2)-1foriin$(seq$2);dodraw_line$left_b$left_a;printf"_"draw_line$right_b$right_a;printf"\n"# we're moving "1"s for both branches with every itteration# making the distance between them wider and widerletleft_b=$left_b-1;letleft_a=$left_a+1letright_b=$right_b+1;letright_a=$right_a-1done}draw_tree(){letwidth=$1letheight=$2draw_stalk$width$heightdraw_fork$width$height}# Natural Natural Natural -> String# Width Height n_trees # composes a string with calls to draw_tree, so that # we could eval it later# result="<(draw_tree 7 2) <(draw_tree 7 2) <(draw_tree 7 2)"next_trees(){result=""foriin$(seq$3);do# if we add anything to an empty var ""# there is no space after the first argumentresult="<(draw_tree $1 $2) $result"doneecho$result}main(){# n =< 5read-p"n<=5: "n# width and height of the very first treewidth=63height=16lines=63trees=1steps=0foriin$(seq$n);do# tr '\t' '0' # replace "\t" between trees with "_"evalpaste$(next_trees$width$height$trees)|tr'\t''_'|fix_width# at each step we reduce the number of blank lines by the height of the treeletlines=$((lines-(height*2)))letwidth=$width/2letheight=$height/2lettrees=$trees*2donedraw_blank_lines$lines}main|tac
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Join us
Create a HackerRank account
Be part of a 26 million-strong community of developers
Please signup or login in order to view this challenge
Functions and Fractals - Recursive Trees - Bash!
You are viewing a single comment's thread. Return to all comments →
it's messy but it works D: