Given a binary tree, check whether it is a mirror of itself (ie, symmetric around its center).
For example, this binary tree
[1,2,2,3,4,4,3]
is symmetric:1 / \ 2 2 / \ / \ 3 4 4 3
But the following
[1,2,2,null,3,null,3]
is not:1 / \ 2 2 \ \ 3 3
Approach : Use the simple recursive solution.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | /** * Definition for a binary tree node. * struct TreeNode { * int val; * struct TreeNode *left; * struct TreeNode *right; * }; */ bool checkIfSymmetric(struct TreeNode* n1, struct TreeNode* n2){ if(n1 == NULL && n2 == NULL) return true; if(n1 == NULL || n2 == NULL) return false; if(n1->val == n2->val){ return checkIfSymmetric(n1->left, n2->right) && checkIfSymmetric(n1->right, n2->left); } return false; } bool isSymmetric(struct TreeNode* root) { if(root == NULL){ return true; } return checkIfSymmetric(root->left, root->right); } |
Good Article
ReplyDeleteThanks for sharing.For Online MBA check below.
Innomatics Research Labs is collaborated with JAIN (Deemed-to-be University) and offering the Online MBA in Artificial Intelligence & Business Intelligence Program. It is a sublime program of getting an MBA degree from one of the best renowned university – JAIN University and an IBM certification program in Data Science, Artificial Intelligence, and Business Intelligence from Innomatics Research Labs in collaboration with Royal Society London.
Online MBA in Data Science
Online MBA in Business Analytics
Online MBA in Business Intelligence
Komondor Puppy
ReplyDeleteWelcome to KomondorPuppy.com
Find the perfect match for your Komondor dog
At KomondorPuppy.com, we help dog owners connect with others who are looking to mate their Komondor dogs. Whether you're a pet lover or a professional breeder, our website makes it easy to find th reight match.
🐾 What You Can Do Here:
Browse Komondor Dogs: See listings of male and female Komondor dogs ready for mating.
Search by Filters: Find dogs by location, age, gender, price, or quality.
Get Breed Info: Learn about Komondor dogs – their care, grooming, and personality.
Connect Easily: Message or call owners directly from the listing.
🌟 Why Use KomondorPuppy.com?
Simple to Use: Easy layout and quick search tools.
Trusted Listings: Only Komondor dogs, with real information.
Helpful for All: Great for both experienced breeders and new dog owners.
Start today and find the best match for your Komondor!
Visit KomondorPuppy.com and explore all listings.