👽
Software Engineer
Highlights
Pinned Loading
-
Bubble Sort implementation in cpp
Bubble Sort implementation in cpp 1#include <iostream>
23void bubbleSort(int* A, int length) {
4// Guarantee of iterations to sort the array
5for (int k = 0; k < length - 1; k++) { // Loop K
-
Find all factors of a number using c++
Find all factors of a number using c++ 1// https://www.youtube.com/watch?v=dolcMgiJ7I0&list=PL2_aWCzGMAwLL-mEB4ef20f3iqWMGWa25&index=6&t=0s
23#include <iostream>
4#include <list>
5#include <cmath>
-
Implement Depth Search in a Node
Implement Depth Search in a Node 1// https://www.algoexpert.io/questions/Depth-first%20Search
23#include <vector>
4using namespace std;
5 -
Evaluate Postfix Expression using Stack
Evaluate Postfix Expression using Stack 1#include <iostream>
2#include <string>
3#include <stack>
45bool isOperator(char x) {
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.