프로그래밍2 [leetcode] 14. Longest Common Prefix 14. Longest Common Prefix Easy 35482083Add to ListShare Write a function to find the longest common prefix string amongst an array of strings. If there is no common prefix, return an empty string "". Example 1: Input: strs = ["flower","flow","flight"] Output: "fl" Example 2: Input: strs = ["dog","racecar","car"] Output: "" Explanation: There is no common prefix among the input strings. Constrain.. 2021. 1. 16. [프로그래밍][c/c++] Copy CString to clipboard. CString 클립보드에 붙여넣기 매번 사용자에게 IP를 입력하도록 요구 받는데, default로 자주 쓰이는 IP는 정해져 있다.미리 클립보드에 붙여넣기를 해두면 입력할때 paste만 하면되니 편할 것 같아서 구글링하여아래와 같이 함수를 만들었다. void copyToClipboard(const CString strText){HGLOBAL h; LPTSTR arr; size_t bytes = (strText.GetLength()+1)*sizeof(TCHAR); h=GlobalAlloc(GMEM_MOVEABLE, bytes); arr=(LPTSTR)GlobalLock(h); ZeroMemory(arr,bytes); _tcscpy_s(arr, strText.GetLength()+1, strText); //strText.ReleaseBuff.. 2016. 9. 13. 이전 1 다음 반응형