• Skip to primary navigation
  • Skip to content
  • Skip to primary sidebar
  • Skip to secondary sidebar

GoHired

Interview Questions asked in Google, Microsoft, Amazon

Join WeekEnd Online Batch from 4-April-2020 on How to Crack Coding Interview in Just 10 Weeks : Fees just 20,000 INR

  • Home
  • Best Java Books
  • Algorithm
  • Internship
  • Certificates
  • About Us
  • Contact Us
  • Privacy Policy
  • Array
  • Stack
  • Queue
  • LinkedList
  • DP
  • Strings
  • Tree
  • Mathametical
  • Puzzles
  • Graph

Given Set of words or A String find whether chain is possible from these words or not

August 25, 2014 by Dhaval Dave

You are given N strings or N words. You have to find whether a chain can be formed with all the strings given namely n ?
Chain : A chain can be formed between 2 strings if last character of the 1st string matches with the first character of the second string.
Example : cat ,eng, galactic, tree
These words Create chain as  …  TREE,ENG,GALACTIC,CAT or CAT, TREE, ENG, GALACTIC
Try to think as its simple solution.

Logic 1)
Brute Force Approach : With each word from input string and try to create chain.
example 
Input : English, Yellow , Maths , Chemistry , Water , Horse
Take word  “English” which ends with “H” Find another word which starts with H.
Like wise continue and if you can’t find chain containing all words return “failure”
else return “true”
Logic 2) 
Create Two array for Input words
Arr1 = Contains only first character of all words
Arr2 = Contains only last character of all words
Now check if all occurrence of Arr1 are part of Arr2 or not.
If they are then they create Chain  else not.
Example 1) 
For Input English, Yellow , Maths , Chamistry , Water , Horse
Arr1 = { e , y , m , c , w , h}
Arr2 = { h , w , s , y , r , e }
Example 2)
For Input cat ,engg, galactic, tree
Arr1 = { c , e , g , t }
Arr2 = { t , g , c , e }
Example 3) : 
For Input : Apple, elephant, truck.
Also creates Chain and not ring.
Arr1 = { a , e , t }
Arr2 = { e,  t , k }
Modification : 
Only One character from Arr1 and one from Arr2 can be considered if only if they both are not from one word.
means here apart from  ‘a’ of Arr1 and ‘k’ of Arr2 we can eliminate for occurrence count if they both are not from one word.
say words are ark, elephant, tree will also create same Arr1 and Arr2 as above Example3) but as “ark” contains both starting and ending character which doesn’t meet. This Words cant create chain.
Code  :
 Its Very Simple code Please try at your own.
Thanks Dhaval for suggesting this Approach and  article.

Similar Articles

Filed Under: Amazon Interview Question, Flipkart Interview Questions, Interview Questions, Microsoft Interview Questions, problem Tagged With: Dynamic Programming, string

Reader Interactions

Primary Sidebar

Join WeekEnd Online/Offline Batch from 4-April-2020 on How to Crack Coding Interview in Just 10 Weeks : Fees just 20,000 INR

Join WeekEnd Online/Offline Batch from 4-April-2020

WhatsApp us

Secondary Sidebar

Custom Search

  • How I cracked AMAZON
  • LeetCode
  • Adobe
  • Amazon
  • Facebook
  • Microsoft
  • Hacker Earth
  • CSE Interview

Top Rated Questions

Wrong Directions given find minimum moves so that he can reach to the destination

Given array of 0’s and 1’s. All 0’s are coming first followed by 1’s. find the position of first 1

Reversal of LinkedList

Find Percentage of Words matching in Two Strings

Top 10 Interviews Techniqes for Campus Interview in IIT NIT BITS for MTech

Reliance Jio Software Developer Interview Experience

Inorder and Preorder traversals of a Binary Tree given. Output the Postorder traversal of it.

In Given LinkedList Divide LL in N Sub parts and delete first K nodes of each part

SAP Off Campus Hiring_ March 2015 Analytical Aptitude

Leetcode: Edit Distance

Sort Stack in place

Mirror of Tree

Fibonacci Hashing & Fastest Hashtable

Templates in C++

Max Sum in circularly situated Values

Longest Increasing Subsequence

N teams are participating. each team plays twice with all other teams. Some of them will go to the semi final. Find Minimum and Maximum number of matches that a team has to win to qualify for finals ?

Circular Linked List

Printing each word reverse in string

Diagonal Traversal of Binary Tree

Puzzle : 100 doors in a row Visit and Toggle the door. What state the door will be after nth pass ?

Walmart Labs Interview Experience

Cisco Hiring Event 21st – 22nd Feb 2015

Find loop in Singly linked list

Edit Distance ( Dynamic Programming )

Find the smallest window in a string containing all characters of another string

1014 Practice Question of New GRE – Princeton

Python String and numbers

Stickler thief

Stock Buy Sell to Maximize Profit

Copyright © 2025 · Genesis Framework · WordPress · Log in