Skip to content

maixuanhan/programming-notes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

63 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Programming notes

Daily Coding Problem

DailyCodingProblem

Data structure and algorithm

Array

  1. How do you find the missing number in a given integer array of 1 to 100? (solution) (solution 2)
  2. How do you find the duplicate number on a given integer array? (solution)
  3. How do you find duplicate numbers in an array if it contains multiple duplicates? (solution)
  4. How are duplicates removed from a given array? (solution)
  5. How do you find the largest and smallest number in an unsorted integer array?
  6. How do you find all pairs of an integer array whose sum is equal to a given number?
  7. How do you reverse an array?
  8. How is an integer array sorted in place using the quicksort algorithm?

Linked List

  1. How do you find the middle element of a singly linked list in one pass? (solution)
  2. How do you check if a given linked list contains a cycle? How do you find the starting node of the cycle? (solution)
  3. How do you reverse a linked list?
  4. How are duplicate nodes removed in an unsorted linked list?
  5. How do you find the length of a singly linked list?
  6. How do you find the third node from the end in a singly linked list?
  7. How do you find the sum of two linked lists using Stack?
    Input:
    First List: 5->6->3  // represents number 563
    Second List: 8->4->2 //  represents number 842
    Output
    Resultant list: 1->4->0->5  // represents number 1405
    

String

  1. How do you print duplicate characters from a string? (solution)
  2. How do you check if two strings are anagrams of each other? (solution)
  3. How do you print the first non-repeated character from a string? (solution)
  4. How can a given string be reversed using recursion? (solution)
  5. How do you check if a string contains only digits?
  6. How are duplicate characters found in a string?
  7. How do you count a number of vowels and consonants in a given string?
  8. How do you count the occurrence of a given character in a string?
  9. How do you find all permutations of a string?
  10. How do you reverse words in a given sentence without using any library method?
  11. How do you check if two strings are a rotation of each other? (solution)
  12. How do you check if a given string is a palindrome?

Tree

  1. How is a binary search tree implemented?
  2. How do you perform preorder traversal in a given binary tree?
  3. How do you traverse a given binary tree in preorder without recursion?
  4. How do you perform an inorder traversal in a given binary tree?
  5. How do you print all nodes of a given binary tree using inorder traversal without recursion?
  6. How do you implement a postorder traversal algorithm?
  7. How do you traverse a binary tree in postorder traversal without recursion?
  8. How are all leaves of a binary search tree printed?
  9. How do you count a number of leaf nodes in a given binary tree?
  10. How do you perform a binary search in a given array?

Algorithms

  1. How is a bubble sort algorithm implemented? (solution)
  2. How is an iterative quicksort algorithm implemented?
  3. How do you implement an insertion sort algorithm? (solution)
  4. How is a merge sort algorithm implemented?
  5. How do you implement a bucket sort algorithm?
  6. How do you implement a counting sort algorithm?
  7. How is a radix sort algorithm implemented?
  8. How do you check if two rectangles overlap with each other?
  9. How do you design a vending machine?

Programming techniques

  1. How do you swap two numbers without using the third variable?
  2. Write a program printing hello world without using semicolon.
  3. Print hello world n times without using loop.
  4. User input a number, print out odd or even without using if statement.

Miscellaneous

  1. Draw Fibonacci spiral using HTML5 canvas (view)

About

Programming lessons

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published