A Collection of Code Snippets in as Many Programming Languages as Possible
This project is maintained by TheRenegadeCoder
Welcome to the Bubble Sort in Clojure page! Here, you'll find the source code for this program as well as a description of how the program works.
(ns bubble-sort
(:gen-class))
(defn- bubble [ys x]
(if-let [y (peek ys)]
(if (> y x)
(conj (pop ys) x y)
(conj ys x))
[x]))
(defn bubble-sort [xs]
(let [ys (reduce bubble [] xs)]
(if (= xs ys)
xs
(recur ys))))
(defn- convert-to-int-array [string]
(->> (clojure.string/split string #", " )
(map #(Integer/parseInt %))))
(defn- convert-to-string [int-array]
(clojure.string/join ", " int-array))
(defn- print-bubble-sort [string]
(println
(convert-to-string
(bubble-sort
(convert-to-int-array string)))))
(defn- is-valid-input [args]
(and
(not= (count args) 0)
(not= (first args) "")
(> (count (convert-to-int-array (first args))) 1)
))
(defn- print-error []
(println "Usage: please provide a list of at least two integers to sort in the format \"1, 2, 3, 4, 5\""))
(defn main [args]
(try
(if (is-valid-input args)
(print-bubble-sort (first args))
(print-error))
(catch Exception e (print-error))))
(main *command-line-args*)
Bubble Sort in Clojure was written by:
If you see anything you'd like to change or update, please consider contributing.
No 'How to Implement the Solution' section available. Please consider contributing.
No 'How to Run the Solution' section available. Please consider contributing.