Avon Wheatbelt
The Avon Wheatbelt is an Australian bioregion in Western Australia[1][2] and part of the larger Southwest Australia savanna ecoregion.[3]
Sub regions
It has within it, two sub-regions named after localities within the region:
gollark: I actually stole this particular quicksort from a r/haskell post talking about it.
gollark: ```lisp (let (partition_rec xs pred acc) (cond ((= xs '()) acc) (true (partition_rec (tail xs) pred (cond ((pred (head xs)) (list (cons (head xs) (head acc)) (snd acc))) (true (list (head acc) (cons (head xs) (snd acc)))) ))) )) (let (qsort xs cont) (cond ((= xs '()) (cont '())) (true (do (let h (head xs)) (let t (tail xs)) (let part_result (partition_rec t (lambda (x) (< x h)) '(() ()))) (qsort (head part_result) (lambda (ls) (qsort (snd part_result) (lambda (rs) (cont (+ ls (list h) rs)))))) )) ))```These all have to be done tail recursively or it could overflow.
gollark: Continuation passing style quicksort in a hilariously slow interpreter.
gollark: It manages *1* second, which is great.
gollark: When writing osmarkslisp™, I cared about performance to the extent that it would sort a list of 200 integers in under 5 seconds.
References
- "Revision of the Interim Biogeographic Regionalisation for Australia (IBRA) and Development of Version 5.1 - Summary Report". Environment Australia. Department of the Environment and Water Resources, Australian Government. Archived from the original on 5 September 2006. Retrieved 31 January 2007.
- IBRA Version 6.1 data
- "Southwest Australia savanna". Terrestrial Ecoregions. World Wildlife Fund.
Further reading
- Thackway, R and I D Cresswell (1995) An interim biogeographic regionalisation for Australia : a framework for setting priorities in the National Reserves System Cooperative Program Version 4.0 Canberra : Australian Nature Conservation Agency, Reserve Systems Unit, 1995. ISBN 0-642-21371-2
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.