본문 바로가기

알고리즘 · 코딩

[프로그래머스] 문자열 내 마음대로 정렬하기

문제 링크

https://programmers.co.kr/learn/courses/30/lessons/12915

 

프로그래머스

코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.

programmers.co.kr


C++ 풀이

#include <string>
#include <vector>
#include <algorithm>
using namespace std;

int gn;

bool cmp(string a, string b) { //비교 함수
	if (a[gn] == b[gn]) //지정 인덱스의 문자가 같은 경우 사전순으로 정렬
		return a < b;
	return (a[gn] < b[gn]); //지정 인덱스의 문자 비교
}

vector<string> solution(vector<string> strings, int n) {
	gn = n;
	sort(strings.begin(), strings.end(), cmp);
	return strings;
}

sort 활용

 

 

 

반응형

'알고리즘 · 코딩' 카테고리의 다른 글

[프로그래머스] 탑  (0) 2020.03.30
카카오 인턴 모의고사  (0) 2020.03.28
[프로그래머스] 전화번호 목록  (0) 2020.03.22
[프로그래머스] 행렬의 곱셈  (0) 2020.03.02
[프로그래머스] 시저 암호  (0) 2020.02.25