일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- sshpass
- Jupyter
- postgresql
- centos
- kitura
- appium
- mysql
- Jupyter Notebook
- Materials
- STF_PortForwarding
- ubuntu
- postgres
- insert
- STF
- openpyxl
- nohup
- PYTHON
- ssh
- create table
- nmap
- port forwarding
- rethinkdb
- SWIFT
- GoCD
- ftp
- perfect
- 실행권한
- appium server
- 28015
- nGrinder
- Today
- Total
목록Golang/Basic (20)
don't stop believing
Heap 자료구조를 이용한 정렬 방법입니다. https://en.wikipedia.org/wiki/Heapsort Heapsort - Wikipedia From Wikipedia, the free encyclopedia Jump to navigation Jump to search A sorting algorithm which uses the heap data structure In computer science, heapsort is a comparison-based sorting algorithm. Heapsort can be thought of as an improved selection sort: en.wikipedia.org 먼저 Heap Sort를 이해하려면 Heap 자료구조와 완전이진트리에 대..
Odd-Even Sort입니다. 홀짝 정렬이라고도 합니다. 기본적으로 버블정렬과 같지만 홀수자리와 짝수자리를 나눠 비교해 정렬합니다. https://en.wikipedia.org/wiki/Odd%E2%80%93even_sort Odd–even sort - Wikipedia In computing, an odd–even sort or odd–even transposition sort (also known as brick sort[1][self-published source]) is a relatively simple sorting algorithm, developed originally for use on parallel processors with local interconnections. It is a..
버블 정렬과 비슷한 계념으로 비교 대상을 배열의 앞과 뒤에서부터 시작하며 그 간격을 좁혀가며 정렬하는 방법입니다. https://en.wikipedia.org/wiki/Comb_sort Comb sort - Wikipedia From Wikipedia, the free encyclopedia Jump to navigation Jump to search Interval based sorting algorithm Comb sort is a relatively simple sorting algorithm originally designed by Włodzimierz Dobosiewicz in 1980.[1][2] Later it was rediscovered by Stephen L en.wikipedia.or..
가장 효율적인 정렬이라고 합니다. https://en.wikipedia.org/wiki/Quicksort Quicksort - Wikipedia From Wikipedia, the free encyclopedia Jump to navigation Jump to search A divide and conquer sorting algorithm Quicksort (sometimes called partition-exchange sort) is an efficient sorting algorithm, serving as a systematic method for placing the elements o en.wikipedia.org 배열에서 기준이되는 피벗을 잡고 피벗보다 작은것을 왼쪽에 큰것을 오른쪽에 넣으..
왜 난쟁이 정렬이라고 했는지는 모르지만 처음 불릴때는 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 알고리즘은 가장 간단하지만 성능은 그리 좋지 않은 알고리즘입니다. 각 배열의 앞자리와..
Gin의 기능을 확인하다 아래와 같은 코드를 확인확인했습니다.r.MaxMultipartMemory = 8 > 3 // 01110000인 비트를 오른쪽으로 3번 이동합니다. fmt.Printf("%08b", b) // 비트로 확인하면 00001110이 되고 정수로는 14입니다. 만약 오른쪽으로 5번 이동하게 되면 00000011이 되고 정수로는 13이 됩니다. 이제 Gin에서 봤던 메모리 설정 코드입니다.파일 업로드를 하는데 업로드되는 파일의 사이즈를 메모리에 할당 할 수 있도록 설정을 하게 됩니다. // Set a lower memory limit for multipart forms (default is 32 MiB) r.MaxMultipartMemory = 8