해커랭크(HackerRank)
-
Compare two linked lists해커랭크(HackerRank) 2018. 8. 19. 17:19
1. 문제 2. 알고리즘키워드 - 구현, 링크 리스트 3. 코드 123456789101112131415161718192021/* Compare two linked lists A and B Return 1 if they are identical and 0 if they are not. Node is defined as struct Node { int data; struct Node *next; }*/int CompareLists(Node *headA, Node* headB){ // This is a "method-only" submission. // You only need to complete this method if (headA == NULL && headB == NULL) { return 1; } ..
-
Insert a node at a specific position in a linked list해커랭크(HackerRank) 2018. 8. 19. 17:18
1. 문제 2. 알고리즘키워드 - 구현, 자료구조, 링크리스트 3. 코드 123456789101112131415161718192021222324252627282930313233343536/* Insert Node at a given position in a linked list head can be NULL First element in the linked list is at position 0 Node is defined as struct Node { int data; struct Node *next; }*/Node* InsertNth(Node *head, int data, int position){ Node *newNode = new Node();//(Node*)malloc(sizeof(Node));..
-
Counting Valleys해커랭크(HackerRank) 2018. 8. 19. 17:17
1. 문제 2. 알고리즘키워드 - 구현 3. 코드 1234567891011121314151617181920212223242526272829303132333435363738#include using namespace std; int countingValleys(int n, string s) { // Complete this function // 초기 위치는 0 int position = 0; // 깊이 int depth = 0; for(int i =0; i
-
CamelCase해커랭크(HackerRank) 2018. 8. 19. 17:15
1. 문제입력 받은 문자열에서 대문자의 개수를 출력 하는 문제 2. 알고리즘키워드 - 구현 3. 코드 12345678910111213141516171819202122232425262728293031#include using namespace std; int camelcase(string s) { // Complete this function const int size = s.size(); int count = 1; for(int i=0; i= 'a' && ch > s; int result = camelcase(s); cout
-
Interview Preparation KitArraysArrays: Left Rotation해커랭크(HackerRank) 2018. 7. 4. 17:03
https://www.hackerrank.com/challenges/ctci-array-left-rotation/problem?h_l=playlist&slugs%5B%5D=interview&slugs%5B%5D=interview-preparation-kit&slugs%5B%5D=arrays 1. 문제배열의 요소 회전 하는 문제 2. 알고리즘키워드 - 배열 3. 코드 12345678910111213// Complete the rotLeft function below.vector rotLeft(vector a, int d) { const int size = a.size(); vector brr(size); for(int i=0; i