{"id":21392308,"url":"https://github.com/andy-y-li/sort","last_synced_at":"2025-03-16T13:42:00.169Z","repository":{"id":86473964,"uuid":"136438462","full_name":"andy-y-li/sort","owner":"andy-y-li","description":"sort with C","archived":false,"fork":false,"pushed_at":"2018-06-07T16:18:30.000Z","size":215,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-01-23T01:22:53.611Z","etag":null,"topics":["bubble","cocktail","insertion","insertionsortdichotom","selection","sorting-algorithms"],"latest_commit_sha":null,"homepage":null,"language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/andy-y-li.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-06-07T07:23:45.000Z","updated_at":"2018-06-07T16:18:31.000Z","dependencies_parsed_at":null,"dependency_job_id":"5ef3fb61-524d-447d-88f2-97f32aff4783","html_url":"https://github.com/andy-y-li/sort","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andy-y-li%2Fsort","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andy-y-li%2Fsort/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andy-y-li%2Fsort/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andy-y-li%2Fsort/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/andy-y-li","download_url":"https://codeload.github.com/andy-y-li/sort/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243878428,"owners_count":20362432,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bubble","cocktail","insertion","insertionsortdichotom","selection","sorting-algorithms"],"created_at":"2024-11-22T13:39:54.014Z","updated_at":"2025-03-16T13:42:00.144Z","avatar_url":"https://github.com/andy-y-li.png","language":"Shell","readme":"## Sort\n\n### Usage\n\n```\n $ ./configure \nchecking for a BSD-compatible install... /usr/bin/install -c\nchecking whether build environment is sane... yes\nchecking for a thread-safe mkdir -p... ./install-sh -c -d\nchecking for gawk... no\nchecking for mawk... no\nchecking for nawk... no\nchecking for awk... awk\nchecking whether make sets $(MAKE)... yes\nchecking for gcc... gcc\nchecking whether the C compiler works... yes\nchecking for C compiler default output file name... a.out\nchecking for suffix of executables... \nchecking whether we are cross compiling... no\nchecking for suffix of object files... o\nchecking whether we are using the GNU C compiler... yes\nchecking whether gcc accepts -g... yes\nchecking for gcc option to accept ISO C89... none needed\nchecking for style of include used by make... GNU\nchecking dependency style of gcc... gcc3\nchecking that generated files are newer than configure... done\nconfigure: creating ./config.status\nconfig.status: creating Makefile\nconfig.status: creating config.h\nconfig.status: executing depfiles commands\n$  make\n/Applications/Xcode.app/Contents/Developer/usr/bin/make  all-am\ngcc -DHAVE_CONFIG_H -I. -I ./src    -g -O2 -Wall  -MT bubbleSort.o -MD -MP -MF .deps/bubbleSort.Tpo -c -o bubbleSort.o `test -f 'src/bubbleSort.c' || echo './'`src/bubbleSort.c\nmv -f .deps/bubbleSort.Tpo .deps/bubbleSort.Po\ngcc  -g -O2 -Wall    -o bubble bubbleSort.o  \ngcc -DHAVE_CONFIG_H -I. -I ./src    -g -O2 -Wall  -MT cocktailSort.o -MD -MP -MF .deps/cocktailSort.Tpo -c -o cocktailSort.o `test -f 'src/cocktailSort.c' || echo './'`src/cocktailSort.c\nmv -f .deps/cocktailSort.Tpo .deps/cocktailSort.Po\ngcc  -g -O2 -Wall    -o cocktail cocktailSort.o  \ngcc -DHAVE_CONFIG_H -I. -I ./src    -g -O2 -Wall  -MT selectionSort.o -MD -MP -MF .deps/selectionSort.Tpo -c -o selectionSort.o `test -f 'src/selectionSort.c' || echo './'`src/selectionSort.c\nmv -f .deps/selectionSort.Tpo .deps/selectionSort.Po\ngcc -DHAVE_CONFIG_H -I. -I ./src    -g -O2 -Wall  -MT create_rand.o -MD -MP -MF .deps/create_rand.Tpo -c -o create_rand.o `test -f 'src/create_rand.c' || echo './'`src/create_rand.c\nmv -f .deps/create_rand.Tpo .deps/create_rand.Po\ngcc  -g -O2 -Wall    -o selectionSort selectionSort.o create_rand.o  \ngcc -DHAVE_CONFIG_H -I. -I ./src    -g -O2 -Wall  -MT insertionSort.o -MD -MP -MF .deps/insertionSort.Tpo -c -o insertionSort.o `test -f 'src/insertionSort.c' || echo './'`src/insertionSort.c\nmv -f .deps/insertionSort.Tpo .deps/insertionSort.Po\ngcc  -g -O2 -Wall    -o insertionSort insertionSort.o create_rand.o  \ngcc -DHAVE_CONFIG_H -I. -I ./src    -g -O2 -Wall  -MT insertionSortDichotomy.o -MD -MP -MF .deps/insertionSortDichotomy.Tpo -c -o insertionSortDichotomy.o `test -f 'src/insertionSortDichotomy.c' || echo './'`src/insertionSortDichotomy.c\nmv -f .deps/insertionSortDichotomy.Tpo .deps/insertionSortDichotomy.Po\ngcc  -g -O2 -Wall    -o insertionSortDichotomy insertionSortDichotomy.o create_rand.o\n$  ./insertionSort\n20 33 10 82 70 37 18 48 57 12 \n插入排序结果：10 12 18 20 33 37 48 57 70 82 \n\n```\n\n\n\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandy-y-li%2Fsort","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fandy-y-li%2Fsort","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandy-y-li%2Fsort/lists"}