일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- centos
- 실행권한
- nGrinder
- Materials
- ssh
- PYTHON
- 28015
- GoCD
- nmap
- kitura
- appium
- perfect
- appium server
- Jupyter
- openpyxl
- rethinkdb
- nohup
- ftp
- port forwarding
- insert
- SWIFT
- postgresql
- STF_PortForwarding
- Jupyter Notebook
- ubuntu
- sshpass
- create table
- mysql
- postgres
- STF
- Today
- Total
don't stop believing
왜 난쟁이 정렬이라고 했는지는 모르지만 처음 불릴때는 stupid sort라고 했다고 합니다. 성능면에서는 별로 좋지 못한 정렬 알고리즘입니다. https://en.wikipedia.org/wiki/Gnome_sort Gnome sort - Wikipedia Gnome sort (dubbed stupid sort) is a sorting algorithm originally proposed by an Iranian computer scientist Hamid Sarbazi-Azad (professor of Computer Engineering at Sharif University of Technology)[1] in 2000. The sort was first called stupid sort[2] (n..
칵테일 쉐이커 정렬 또는 양방향 버블 정렬이라고도 합니다. 버블 정렬에서는 오름차순일 경우 큰값을 찾아 오늘쪽 자리부터 채워나가게 됩니다. 이걸 양쪽으로 오가며 큰 값과 작은 값을 배열의 끝에서부터 채워오는 정렬입니다. https://en.wikipedia.org/wiki/Cocktail_shaker_sort Cocktail shaker sort - Wikipedia Cocktail shaker sort,[1] also known as bidirectional bubble sort,[2] cocktail sort, shaker sort (which can also refer to a variant of selection sort), ripple sort, shuffle sort,[3] or shuttle..

합병 정렬 또는 병합 정렬이라고 합니다. 재귀호출로 길이가 1인 배열로 분리시키고 분리된 배열을 비교해 순서를 바꿔주며 병합합니다. https://en.wikipedia.org/wiki/Merge_sort Merge sort - Wikipedia From Wikipedia, the free encyclopedia Jump to navigation Jump to search A divide and combine sorting algorithm In computer science, merge sort (also commonly spelled mergesort) is an efficient, general-purpose, comparison-based sorting algorithm. Most impl en...
제자리 정렬이라고도 합니다. 최소값을 배열의 가장 앞자리와 교체합니다. https://en.wikipedia.org/wiki/Selection_sort Selection sort - Wikipedia In computer science, selection sort is a sorting algorithm, specifically an in-place comparison sort. It has O(n2) time complexity, making it inefficient on large lists, and generally performs worse than the similar insertion sort. Selection sort is noted en.wikipedia.org Go로 구현한 코드입니다..
https://en.wikipedia.org/wiki/Bubble_sort Bubble sort - Wikipedia From Wikipedia, the free encyclopedia Jump to navigation Jump to search Simple comparison sorting algorithm Bubble sort, sometimes referred to as sinking sort, is a simple sorting algorithm that repeatedly steps through the list, compares adjacent pairs an en.wikipedia.org Buble Sort 알고리즘은 가장 간단하지만 성능은 그리 좋지 않은 알고리즘입니다. 각 배열의 앞자리와..

GoCD를 설치하고 처음 Pileline을 추가할 때 좀 헤맸습니다. 우선 문제는 아래와 같습니다. GoCD(go-server)를 설치한 서버에 go 계정은 있으나 home 디렉터리가 /var/go 였다는 것 (당황) 처음 go 계정으로 접속하니 /var/go 디렉터리에 권한이 없었다는 것. ssh-keygen 으로 퍼블릭키를 생성하고 gitlab에 등록해도 권한이 없다는 메시지가 나온 것 지금은 해결한 상태이며 처음부터 설명하겠습니다. 처음 Pipeline을 추가할 때 Materials를 추가해야 합니다. 사내에 있는 Git 서버와 연동할 프로젝트는 아래와 같습니다. ssh 경로 : git@gitlab.ngle.co.kr:marshmallow/APITutor.git http 경로 : http://git..