Showing posts with label HR-PROBLEM SOLVING. Show all posts
Showing posts with label HR-PROBLEM SOLVING. Show all posts

Monday, April 5, 2021

HACKERRANK - PROBLEM-SOLVING - DATA STRUCTURES - LINKED LIST SOLUTIONS

 HACKERRANK - PROBLEM-SOLVING - DATA STRUCTURES SOLUTIONS 


LINKED LIST 


* Print elements of Linked List

Function-

Iterative Solution-

void printLinkedList(SinglyLinkedListNode* head) {
    SinglyLinkedListNode *p = head;
    while(p){
        cout << p->data << endl;
        p = p->next;
    }
    return;
}

Recursive Solution-

void printLinkedList(SinglyLinkedListNode* head) {
    SinglyLinkedListNode *p = head;
    if(p != NULL){
        cout << p->data << endl;
        printLinkedList(p->next);
    }
    else 
        return;
}

Full Program-

#include <bits/stdc++.h>

using namespace std;

class SinglyLinkedListNode {
    public:
        int data;
        SinglyLinkedListNode *next;

        SinglyLinkedListNode(int node_data) {
            this->data = node_data;
            this->next = nullptr;
        }
};

class SinglyLinkedList {
    public:
        SinglyLinkedListNode *head;
        SinglyLinkedListNode *tail;

        SinglyLinkedList() {
            this->head = nullptr;
            this->tail = nullptr;
        }

        void insert_node(int node_data) {
            SinglyLinkedListNode* node = new SinglyLinkedListNode(node_data);

            if (!this->head) {
                this->head = node;
            } else {
                this->tail->next = node;
            }

            this->tail = node;
        }
};


void free_singly_linked_list(SinglyLinkedListNode* node) {
    while (node) {
        SinglyLinkedListNode* temp = node;
        node = node->next;

        free(temp);
    }
}


/*
 * For your reference:
 *
 * SinglyLinkedListNode {
 *     int data;
 *     SinglyLinkedListNode* next;
 * };
 *
 */
void printLinkedList(SinglyLinkedListNode* head) {
    SinglyLinkedListNode *p = head;
    while(p){
        cout << p->data << endl;
        p = p->next;
    }
    return;
}

int main()
{
    SinglyLinkedList* llist = new SinglyLinkedList();

    int llist_count;
    cin >> llist_count;
    cin.ignore(numeric_limits<streamsize>::max(), '\n');

    for (int i = 0; i < llist_count; i++) {
        int llist_item;
        cin >> llist_item;
        cin.ignore(numeric_limits<streamsize>::max(), '\n');

        llist->insert_node(llist_item);
    }

    printLinkedList(llist->head);

    return 0;
}


*Insert Node at Tail of Linked list




HACKERRANK - PROBLEM SOLVING - DATA STRUCTURES - ARRAY SOLUTIONS

HACKERRANK - PROBLEM-SOLVING - DATA STRUCTURES SOLUTIONS 


* ARRAYS 

Arrays - DS

Function-

vector<int> reverseArray(vector<int> a) {
    int start = 0, end = a.size()-1;
    while(start <= end){
        swap(a[start], a[end]);
        start++;
        end--;
    }
    return a;
}

Full Program-

#include <bits/stdc++.h>

using namespace std;

vector<string> split_string(string);

// Complete the reverseArray function below.
vector<int> reverseArray(vector<int> a) {
    int start = 0, end = a.size()-1;
    while(start <= end){
        swap(a[start], a[end]);
        start++;
        end--;
    }
    return a;
}

int main()
{
    ofstream fout(getenv("OUTPUT_PATH"));

    int arr_count;
    cin >> arr_count;
    cin.ignore(numeric_limits<streamsize>::max(), '\n');

    string arr_temp_temp;
    getline(cin, arr_temp_temp);

    vector<string> arr_temp = split_string(arr_temp_temp);

    vector<int> arr(arr_count);

    for (int i = 0; i < arr_count; i++) {
        int arr_item = stoi(arr_temp[i]);

        arr[i] = arr_item;
    }

    vector<int> res = reverseArray(arr);

    for (int i = 0; i < res.size(); i++) {
        fout << res[i];

        if (i != res.size() - 1) {
            fout << " ";
        }
    }

    fout << "\n";

    fout.close();

    return 0;
}

vector<string> split_string(string input_string) {
    string::iterator new_end = unique(input_string.begin(), input_string.end(), [] (const char &x, const char &y) {
        return x == y and x == ' ';
    });

    input_string.erase(new_end, input_string.end());

    while (input_string[input_string.length() - 1] == ' ') {
        input_string.pop_back();
    }

    vector<string> splits;
    char delimiter = ' ';

    size_t i = 0;
    size_t pos = input_string.find(delimiter);

    while (pos != string::npos) {
        splits.push_back(input_string.substr(i, pos - i));

        i = pos + 1;
        pos = input_string.find(delimiter, i);
    }

    splits.push_back(input_string.substr(i, min(pos, input_string.length()) - i + 1));

    return splits;
}

2D Array - DS

Function-

int hourglassSum(vector<vector<int>> arr) {
    int n = arr.size();
    int sum = 0, maxSum = -63;
    for(int i = 0; i <= n-3; i++){
        for(int j = 0; j <= n-3; j++){
            sum = arr[i][j] + arr[i][j+1] + arr[i][j+2] + arr[i+1][j+1] + arr[i+2][j] + arr[i+2][j+1] + arr[i+2][j+2];
            if(sum > maxSum)
                maxSum = sum;
        }
    }
    return maxSum;
}

Full Program-

#include <bits/stdc++.h>

using namespace std;

// Complete the hourglassSum function below.
int hourglassSum(vector<vector<int>> arr) {
    int n = arr.size();
    int sum = 0, maxSum = -63;
    for(int i = 0; i <= n-3; i++){
        for(int j = 0; j <= n-3; j++){
            sum = arr[i][j] + arr[i][j+1] + arr[i][j+2] + arr[i+1][j+1] + arr[i+2][j] + arr[i+2][j+1] + arr[i+2][j+2];
            if(sum > maxSum)
                maxSum = sum;
        }
    }
    return maxSum;
}

int main()
{
    ofstream fout(getenv("OUTPUT_PATH"));

    vector<vector<int>> arr(6);
    for (int i = 0; i < 6; i++) {
        arr[i].resize(6);

        for (int j = 0; j < 6; j++) {
            cin >> arr[i][j];
        }

        cin.ignore(numeric_limits<streamsize>::max(), '\n');
    }

    int result = hourglassSum(arr);

    fout << result << "\n";

    fout.close();

    return 0;
}

Dynamic Array


Left Rotation


Sparse Arrays


Array Manipulation




LEETCODE JUNE 2021 DAILY CODING CHALLENGE

 LEETCODE JUNE 2021 DAILY CODING CHALLENGE JUNE 1 JUNE 2 JUNE 3 JUNE 4 JUNE 5 Maximum Performance of a Team LINK You are given two integers ...