c language - permutation.
훔. 자꾸 삽질해서. 정리.. 개인 코드.. 대충짜서 그런지 ㅡ.ㅡ; 다시 수정해야 할듯. ^^; 결국 요는… my_per에 있는 for문에서 잘 정리해야 한다는거.. int buff[3]; void my_swap(int * a, int * b) { int * tmp =...
훔. 자꾸 삽질해서. 정리.. 개인 코드.. 대충짜서 그런지 ㅡ.ㅡ; 다시 수정해야 할듯. ^^; 결국 요는… my_per에 있는 for문에서 잘 정리해야 한다는거.. int buff[3]; void my_swap(int * a, int * b) { int * tmp =...
leetcode25번을 푸는데.. 아래와 같이 풀면.. 내 PC에서 빌드는 잘되고 값도 잘 나오는데.. ㅡ.ㅡ; #if 0 Given a linked list, reverse the nodes of a linked list k at a time and return its mod...
드론에 열화상 카메라 올려서 스트리밍 하기.. 라즈베리 파이에 열화상 카메라 연결하기 기본 라즈베리 셋팅 in mac https://arsviator.blogspot.com/2016/04/3-start-using-raspberry-pi-3-in-mac-os-x.html...
1. 이상하게 cstring이 동작 안한다. project property -> Confinguration Properties -> General -> Project Defaults. Characher Set : USE Multi-Byte Character S...
인자 두개를 소팅 하는 방법을 구현해 보았습니다. a인자를 먼저 쏘팅하고 a인자가 같으면 b인자를 기준으로 했습니다. #include #include typedef struct MY_DB{ int a; int b; }MY_DB; MY_DB sorting_test[...