{"id":4142,"date":"2024-04-27T10:23:50","date_gmt":"2024-04-27T04:53:50","guid":{"rendered":"https:\/\/cthecosmos.com\/?p=4142"},"modified":"2024-04-27T10:23:50","modified_gmt":"2024-04-27T04:53:50","slug":"%f0%9d%91%bb%f0%9d%92%89%f0%9d%92%86-%f0%9d%91%ba%f0%9d%92%86%f0%9d%92%93%f0%9d%92%8a%f0%9d%92%86%f0%9d%92%94-%f0%9d%92%90%f0%9d%92%87-%f0%9d%91%a9%f0%9d%92%8a%f0%9d%92%88-%f0%9d%91%b6-4","status":"publish","type":"post","link":"https:\/\/cthecosmos.com\/?p=4142","title":{"rendered":"~~~ \ud835\udc7b\ud835\udc89\ud835\udc86 \ud835\udc7a\ud835\udc86\ud835\udc93\ud835\udc8a\ud835\udc86\ud835\udc94 \ud835\udc90\ud835\udc87 \ud835\udc69\ud835\udc8a\ud835\udc88 \ud835\udc76 ~~~\ud835\udc77\ud835\udc82\ud835\udc93\ud835\udc95 \u2013 \ud835\udc70\ud835\udc7d"},"content":{"rendered":"\n<p class=\"has-black-color has-white-background-color has-text-color has-background has-link-color wp-elements-1 wp-block-paragraph\" style=\"font-size:17px;line-height:1.8\">\ud835\udc76(\ud835\udc8f^\ud835\udc8c) -\ud835\udc77\ud835\udc90\ud835\udc8d\ud835\udc9a\ud835\udc8f\ud835\udc90\ud835\udc8e\ud835\udc8a\ud835\udc82\ud835\udc8d \ud835\udc95\ud835\udc8a\ud835\udc8e\ud835\udc86<br><br>Polynomial time is like those tasks that become incredibly more complicated with each extra bit of input. Think of it as a multiplier effect. If you had to complete one task, it would take some time. But if you had to complete two tasks, and then for each of those tasks, another two related tasks, the work multiplies quickly. \u00a0As the degree of the polynomial increases, the efficiency of the algorithm generally decreases, making it crucial to recognize and understand the implications of polynomial time, especially when dealing with larger datasets.<br><br>Let&#8217;s understand this with a WhatsApp Family group, a place where good mornings, random health tips, and conspiracy theories abound.<br><br><strong><em>Joining the Group &#8211; O(n):<\/em><\/strong><br><br>Your first task is to add every family member to the group. From tech-savvy cousins to grand-aunts who think &#8220;LOL&#8221; means &#8220;Lots of Love&#8221;, you&#8217;ve got a vast array of characters. Every new addition promises a fresh wave of chaos.<br><br><strong><em>Deciphering Messages &#8211; O(n^2):<\/em><\/strong><br><br>Each member, in their unique style, shares &#8216;important&#8217; messages. For every person, you find yourself not only reading their messages but also interpreting them for older family members. &#8220;No Grandma, those &#8216;face with tears of joy&#8217; emojis aren&#8217;t because she&#8217;s sad, she&#8217;s laughing!&#8221; The number of clarifications multiplies with each cryptic message shared.<br><br><strong><em>Damage Control &#8211; O(n^3):<\/em><\/strong><br><br>Now, the real challenge. For each member and each of their messages, disputes arise. Uncle Raj thinks the moon landing was fake, while Cousin Priya is sharing a dubious remedy involving turmeric. You&#8217;re constantly playing referee, trying to prevent World War III from breaking out. For every message, there&#8217;s a disagreement, and for every disagreement, there&#8217;s a series of follow-up discussions, apologies, and passive-aggressive comments.<br><br>By the end, managing the group feels like you&#8217;ve been trapped in a never-ending soap opera. And you can&#8217;t even exit the group because, well, family obligations. This spiralling complexity of interpersonal dynamics misinterpreted messages, and peacemaking efforts can be likened to the multiplying challenges of polynomial time.<br><br>Navigating the intricate web of a family WhatsApp group: it&#8217;s as complex as any polynomial algorithm out there.<br><br>Consider these patterns to find the Polynomial-time:<br><br>Nested Loops: Multiple nested loops, especially where each loop runs based on the input size, often indicate polynomial time complexity.<br>Multiple Operations on the Entire Dataset: If an algorithm performs multiple separate operations on the whole dataset, it might have polynomial complexity.<br><\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: cpp; title: ; notranslate\" title=\"\">\n\nfor(int i = 0; i &lt; n; i++) {\nfor(int j = 0; j &lt; n; j++) {\n\/\/ Some constant time operation\n}\n}\n\n<\/pre><\/div>\n\n\n<p class=\"has-black-color has-white-background-color has-text-color has-background has-link-color wp-elements-2 wp-block-paragraph\" style=\"font-size:17px;line-height:1.8\">For every iteration of the outer loop (which runs n times), the inner loop also runs n times. So the total operations are n * n, leading to O(n^2) time complexity.<br><\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: cpp; title: ; notranslate\" title=\"\">\nfor(int i = 0; i &lt; n; i++) {\nfor(int j = 0; j &lt; n; j++) {\nfor(int k = 0; k &lt; n; k++) {\n\/\/ Some constant time operation\n}\n}\n}\n<\/pre><\/div>\n\n\n<p class=\"has-black-color has-white-background-color has-text-color has-background has-link-color wp-elements-3 wp-block-paragraph\" style=\"font-size:17px;line-height:1.8\">Here, for every iteration of the outermost loop, the two inner loops each run n times. This leads to a total of n * n * n operations, resulting in O(n ^3 ) time complexity.<\/p>\n\n\n\n<p class=\"has-black-color has-white-background-color has-text-color has-background has-link-color wp-elements-4 wp-block-paragraph\" style=\"font-size:17px\">LinkedIn Post: <a href=\"https:\/\/www.linkedin.com\/posts\/t-yashwanth-naidu_learnwithyash-earlycareer-embeddedsystems-activity-7105921336820080640-bvpz?utm_source=share&amp;utm_medium=member_desktop\">https:\/\/www.linkedin.com\/posts\/t-yashwanth-naidu_learnwithyash-earlycareer-embeddedsystems-activity-7105921336820080640-bvpz?utm_source=share&amp;utm_medium=member_desktop<\/a><\/p>\n\n\n\n<p class=\"has-white-color has-text-color has-background has-link-color has-medium-font-size wp-elements-5 wp-block-paragraph\" style=\"background:linear-gradient(135deg,rgb(35,23,11) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%)\">~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~<br><strong>An Article by: <\/strong>Yashwanth Naidu Tikkisetty<br>~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Polynomial time complexity in algorithms causes tasks to become increasingly complex with each additional input, much like managing a family WhatsApp group. Joining the group is O(n), deciphering messages is O(n^2), and managing disputes is O(n^3). Nested loops and multiple operations on the entire dataset indicate polynomial time complexity, such as O(n^2) or O(n^3).<\/p>\n<a href=\"https:\/\/cthecosmos.com\/?p=4142\" class=\"more-link\">Read More <span class=\"screen-reader-text\">~~~ \ud835\udc7b\ud835\udc89\ud835\udc86 \ud835\udc7a\ud835\udc86\ud835\udc93\ud835\udc8a\ud835\udc86\ud835\udc94 \ud835\udc90\ud835\udc87 \ud835\udc69\ud835\udc8a\ud835\udc88 \ud835\udc76 ~~~\ud835\udc77\ud835\udc82\ud835\udc93\ud835\udc95 \u2013 \ud835\udc70\ud835\udc7d<\/span><\/a>","protected":false},"author":120055267,"featured_media":4144,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_wpcom_ai_launchpad_first_post":false,"_jetpack_feature_clip_id":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"{title}\n\n{excerpt}\n\n{url}","jetpack_publicize_feature_enabled":false,"jetpack_social_post_already_shared":false,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2},"_wpas_customize_per_network":false,"jetpack_post_was_ever_published":false},"categories":[769112296,36985,28627,30181,952411],"tags":[529459,772321195,37687,772321193,196,1354040,7676441,7676440],"class_list":["post-4142","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-c-concepts-hub","category-c-programming","category-embedded","category-embedded-systems","category-short-articles","tag-bigo","tag-c-programming","tag-data-structures","tag-embedded-systems","tag-programming","tag-short-article","tag-space-complexity","tag-time-complexity","fallback-thumbnail"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.1.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"Polynomial time complexity in algorithms causes tasks to become increasingly complex with each additional input, much like managing a family WhatsApp group. Joining the group is O(n), deciphering messages is O(n^2), and managing disputes is O(n^3). Nested loops and multiple operations on the entire dataset indicate polynomial time complexity, such as O(n^2) or O(n^3).\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Yashwanth Naidu Tikkisetty\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/cthecosmos.com\/?p=4142\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.1.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Yashwanth Naidu Tikkisetty - Embedded Systems | Space Blogger\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"~~~ \ud835\udc7b\ud835\udc89\ud835\udc86 \ud835\udc7a\ud835\udc86\ud835\udc93\ud835\udc8a\ud835\udc86\ud835\udc94 \ud835\udc90\ud835\udc87 \ud835\udc69\ud835\udc8a\ud835\udc88 \ud835\udc76 ~~~\ud835\udc77\ud835\udc82\ud835\udc93\ud835\udc95 \u2013 \ud835\udc70\ud835\udc7d - Yashwanth Naidu Tikkisetty\" \/>\n\t\t<meta property=\"og:description\" content=\"Polynomial time complexity in algorithms causes tasks to become increasingly complex with each additional input, much like managing a family WhatsApp group. Joining the group is O(n), deciphering messages is O(n^2), and managing disputes is O(n^3). Nested loops and multiple operations on the entire dataset indicate polynomial time complexity, such as O(n^2) or O(n^3).\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/cthecosmos.com\/?p=4142\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/cthecosmos.com\/wp-content\/uploads\/2018\/08\/logo1.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/cthecosmos.com\/wp-content\/uploads\/2018\/08\/logo1.png\" \/>\n\t\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t\t<meta property=\"og:image:height\" content=\"1200\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2024-04-27T04:53:50+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2024-04-27T04:53:50+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"~~~ \ud835\udc7b\ud835\udc89\ud835\udc86 \ud835\udc7a\ud835\udc86\ud835\udc93\ud835\udc8a\ud835\udc86\ud835\udc94 \ud835\udc90\ud835\udc87 \ud835\udc69\ud835\udc8a\ud835\udc88 \ud835\udc76 ~~~\ud835\udc77\ud835\udc82\ud835\udc93\ud835\udc95 \u2013 \ud835\udc70\ud835\udc7d - Yashwanth Naidu Tikkisetty\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Polynomial time complexity in algorithms causes tasks to become increasingly complex with each additional input, much like managing a family WhatsApp group. Joining the group is O(n), deciphering messages is O(n^2), and managing disputes is O(n^3). Nested loops and multiple operations on the entire dataset indicate polynomial time complexity, such as O(n^2) or O(n^3).\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/cthecosmos.com\/wp-content\/uploads\/2018\/08\/logo1.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BlogPosting\",\"@id\":\"https:\\\/\\\/cthecosmos.com\\\/?p=4142#blogposting\",\"name\":\"~~~ \\ud835\\udc7b\\ud835\\udc89\\ud835\\udc86 \\ud835\\udc7a\\ud835\\udc86\\ud835\\udc93\\ud835\\udc8a\\ud835\\udc86\\ud835\\udc94 \\ud835\\udc90\\ud835\\udc87 \\ud835\\udc69\\ud835\\udc8a\\ud835\\udc88 \\ud835\\udc76 ~~~\\ud835\\udc77\\ud835\\udc82\\ud835\\udc93\\ud835\\udc95 \\u2013 \\ud835\\udc70\\ud835\\udc7d - Yashwanth Naidu Tikkisetty\",\"headline\":\"~~~ \\ud835\\udc7b\\ud835\\udc89\\ud835\\udc86 \\ud835\\udc7a\\ud835\\udc86\\ud835\\udc93\\ud835\\udc8a\\ud835\\udc86\\ud835\\udc94 \\ud835\\udc90\\ud835\\udc87 \\ud835\\udc69\\ud835\\udc8a\\ud835\\udc88 \\ud835\\udc76 ~~~\\ud835\\udc77\\ud835\\udc82\\ud835\\udc93\\ud835\\udc95 \\u2013 \\ud835\\udc70\\ud835\\udc7d\",\"author\":{\"@id\":\"https:\\\/\\\/cthecosmos.com\\\/?author=120055267#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/cthecosmos.com\\\/#person\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/i0.wp.com\\\/cthecosmos.com\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/ponbigo-p4.png?fit=5093%2C1932&ssl=1\",\"width\":5093,\"height\":1932},\"datePublished\":\"2024-04-27T10:23:50+05:30\",\"dateModified\":\"2024-04-27T10:23:50+05:30\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/cthecosmos.com\\\/?p=4142#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/cthecosmos.com\\\/?p=4142#webpage\"},\"articleSection\":\"C Concepts Hub, c programming, Embedded, Embedded Systems, SHORT ARTICLES, BigO, c programming, Data Structures, Embedded Systems, Programming, SHORT ARTICLE, Space Complexity, Time Complexity\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/cthecosmos.com\\\/?p=4142#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/cthecosmos.com#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/cthecosmos.com\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/cthecosmos.com\\\/?cat=28627#listItem\",\"name\":\"Embedded\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/cthecosmos.com\\\/?cat=28627#listItem\",\"position\":2,\"name\":\"Embedded\",\"item\":\"https:\\\/\\\/cthecosmos.com\\\/?cat=28627\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/cthecosmos.com\\\/?p=4142#listItem\",\"name\":\"~~~ \\ud835\\udc7b\\ud835\\udc89\\ud835\\udc86 \\ud835\\udc7a\\ud835\\udc86\\ud835\\udc93\\ud835\\udc8a\\ud835\\udc86\\ud835\\udc94 \\ud835\\udc90\\ud835\\udc87 \\ud835\\udc69\\ud835\\udc8a\\ud835\\udc88 \\ud835\\udc76 ~~~\\ud835\\udc77\\ud835\\udc82\\ud835\\udc93\\ud835\\udc95 \\u2013 \\ud835\\udc70\\ud835\\udc7d\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/cthecosmos.com#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/cthecosmos.com\\\/?p=4142#listItem\",\"position\":3,\"name\":\"~~~ \\ud835\\udc7b\\ud835\\udc89\\ud835\\udc86 \\ud835\\udc7a\\ud835\\udc86\\ud835\\udc93\\ud835\\udc8a\\ud835\\udc86\\ud835\\udc94 \\ud835\\udc90\\ud835\\udc87 \\ud835\\udc69\\ud835\\udc8a\\ud835\\udc88 \\ud835\\udc76 ~~~\\ud835\\udc77\\ud835\\udc82\\ud835\\udc93\\ud835\\udc95 \\u2013 \\ud835\\udc70\\ud835\\udc7d\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/cthecosmos.com\\\/?cat=28627#listItem\",\"name\":\"Embedded\"}}]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/cthecosmos.com\\\/#person\",\"name\":\"Yashwanth Naidu Tikkisetty\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/cthecosmos.com\\\/?p=4142#personImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a02d9f38e4c924587b544c74f6d5de0c8469b6a5c684622f1aa4ea2ba65b17d8?s=96&d=identicon&r=g\",\"width\":96,\"height\":96,\"caption\":\"Yashwanth Naidu Tikkisetty\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/cthecosmos.com\\\/?author=120055267#author\",\"url\":\"https:\\\/\\\/cthecosmos.com\\\/?author=120055267\",\"name\":\"Yashwanth Naidu Tikkisetty\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/cthecosmos.com\\\/?p=4142#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a02d9f38e4c924587b544c74f6d5de0c8469b6a5c684622f1aa4ea2ba65b17d8?s=96&d=identicon&r=g\",\"width\":96,\"height\":96,\"caption\":\"Yashwanth Naidu Tikkisetty\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/cthecosmos.com\\\/?p=4142#webpage\",\"url\":\"https:\\\/\\\/cthecosmos.com\\\/?p=4142\",\"name\":\"~~~ \\ud835\\udc7b\\ud835\\udc89\\ud835\\udc86 \\ud835\\udc7a\\ud835\\udc86\\ud835\\udc93\\ud835\\udc8a\\ud835\\udc86\\ud835\\udc94 \\ud835\\udc90\\ud835\\udc87 \\ud835\\udc69\\ud835\\udc8a\\ud835\\udc88 \\ud835\\udc76 ~~~\\ud835\\udc77\\ud835\\udc82\\ud835\\udc93\\ud835\\udc95 \\u2013 \\ud835\\udc70\\ud835\\udc7d - Yashwanth Naidu Tikkisetty\",\"description\":\"Polynomial time complexity in algorithms causes tasks to become increasingly complex with each additional input, much like managing a family WhatsApp group. Joining the group is O(n), deciphering messages is O(n^2), and managing disputes is O(n^3). Nested loops and multiple operations on the entire dataset indicate polynomial time complexity, such as O(n^2) or O(n^3).\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/cthecosmos.com\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/cthecosmos.com\\\/?p=4142#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/cthecosmos.com\\\/?author=120055267#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/cthecosmos.com\\\/?author=120055267#author\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/i0.wp.com\\\/cthecosmos.com\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/ponbigo-p4.png?fit=5093%2C1932&ssl=1\",\"@id\":\"https:\\\/\\\/cthecosmos.com\\\/?p=4142\\\/#mainImage\",\"width\":5093,\"height\":1932},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/cthecosmos.com\\\/?p=4142#mainImage\"},\"datePublished\":\"2024-04-27T10:23:50+05:30\",\"dateModified\":\"2024-04-27T10:23:50+05:30\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/cthecosmos.com\\\/#website\",\"url\":\"https:\\\/\\\/cthecosmos.com\\\/\",\"name\":\"Yashwanth Naidu Tikkisetty\",\"description\":\"Embedded Systems | Space Blogger\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/cthecosmos.com\\\/#person\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"~~~ \ud835\udc7b\ud835\udc89\ud835\udc86 \ud835\udc7a\ud835\udc86\ud835\udc93\ud835\udc8a\ud835\udc86\ud835\udc94 \ud835\udc90\ud835\udc87 \ud835\udc69\ud835\udc8a\ud835\udc88 \ud835\udc76 ~~~\ud835\udc77\ud835\udc82\ud835\udc93\ud835\udc95 \u2013 \ud835\udc70\ud835\udc7d - Yashwanth Naidu Tikkisetty","description":"Polynomial time complexity in algorithms causes tasks to become increasingly complex with each additional input, much like managing a family WhatsApp group. Joining the group is O(n), deciphering messages is O(n^2), and managing disputes is O(n^3). Nested loops and multiple operations on the entire dataset indicate polynomial time complexity, such as O(n^2) or O(n^3).","canonical_url":"https:\/\/cthecosmos.com\/?p=4142","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"https:\/\/cthecosmos.com\/?p=4142#blogposting","name":"~~~ \ud835\udc7b\ud835\udc89\ud835\udc86 \ud835\udc7a\ud835\udc86\ud835\udc93\ud835\udc8a\ud835\udc86\ud835\udc94 \ud835\udc90\ud835\udc87 \ud835\udc69\ud835\udc8a\ud835\udc88 \ud835\udc76 ~~~\ud835\udc77\ud835\udc82\ud835\udc93\ud835\udc95 \u2013 \ud835\udc70\ud835\udc7d - Yashwanth Naidu Tikkisetty","headline":"~~~ \ud835\udc7b\ud835\udc89\ud835\udc86 \ud835\udc7a\ud835\udc86\ud835\udc93\ud835\udc8a\ud835\udc86\ud835\udc94 \ud835\udc90\ud835\udc87 \ud835\udc69\ud835\udc8a\ud835\udc88 \ud835\udc76 ~~~\ud835\udc77\ud835\udc82\ud835\udc93\ud835\udc95 \u2013 \ud835\udc70\ud835\udc7d","author":{"@id":"https:\/\/cthecosmos.com\/?author=120055267#author"},"publisher":{"@id":"https:\/\/cthecosmos.com\/#person"},"image":{"@type":"ImageObject","url":"https:\/\/i0.wp.com\/cthecosmos.com\/wp-content\/uploads\/2024\/04\/ponbigo-p4.png?fit=5093%2C1932&ssl=1","width":5093,"height":1932},"datePublished":"2024-04-27T10:23:50+05:30","dateModified":"2024-04-27T10:23:50+05:30","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/cthecosmos.com\/?p=4142#webpage"},"isPartOf":{"@id":"https:\/\/cthecosmos.com\/?p=4142#webpage"},"articleSection":"C Concepts Hub, c programming, Embedded, Embedded Systems, SHORT ARTICLES, BigO, c programming, Data Structures, Embedded Systems, Programming, SHORT ARTICLE, Space Complexity, Time Complexity"},{"@type":"BreadcrumbList","@id":"https:\/\/cthecosmos.com\/?p=4142#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/cthecosmos.com#listItem","position":1,"name":"Home","item":"https:\/\/cthecosmos.com","nextItem":{"@type":"ListItem","@id":"https:\/\/cthecosmos.com\/?cat=28627#listItem","name":"Embedded"}},{"@type":"ListItem","@id":"https:\/\/cthecosmos.com\/?cat=28627#listItem","position":2,"name":"Embedded","item":"https:\/\/cthecosmos.com\/?cat=28627","nextItem":{"@type":"ListItem","@id":"https:\/\/cthecosmos.com\/?p=4142#listItem","name":"~~~ \ud835\udc7b\ud835\udc89\ud835\udc86 \ud835\udc7a\ud835\udc86\ud835\udc93\ud835\udc8a\ud835\udc86\ud835\udc94 \ud835\udc90\ud835\udc87 \ud835\udc69\ud835\udc8a\ud835\udc88 \ud835\udc76 ~~~\ud835\udc77\ud835\udc82\ud835\udc93\ud835\udc95 \u2013 \ud835\udc70\ud835\udc7d"},"previousItem":{"@type":"ListItem","@id":"https:\/\/cthecosmos.com#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/cthecosmos.com\/?p=4142#listItem","position":3,"name":"~~~ \ud835\udc7b\ud835\udc89\ud835\udc86 \ud835\udc7a\ud835\udc86\ud835\udc93\ud835\udc8a\ud835\udc86\ud835\udc94 \ud835\udc90\ud835\udc87 \ud835\udc69\ud835\udc8a\ud835\udc88 \ud835\udc76 ~~~\ud835\udc77\ud835\udc82\ud835\udc93\ud835\udc95 \u2013 \ud835\udc70\ud835\udc7d","previousItem":{"@type":"ListItem","@id":"https:\/\/cthecosmos.com\/?cat=28627#listItem","name":"Embedded"}}]},{"@type":"Person","@id":"https:\/\/cthecosmos.com\/#person","name":"Yashwanth Naidu Tikkisetty","image":{"@type":"ImageObject","@id":"https:\/\/cthecosmos.com\/?p=4142#personImage","url":"https:\/\/secure.gravatar.com\/avatar\/a02d9f38e4c924587b544c74f6d5de0c8469b6a5c684622f1aa4ea2ba65b17d8?s=96&d=identicon&r=g","width":96,"height":96,"caption":"Yashwanth Naidu Tikkisetty"}},{"@type":"Person","@id":"https:\/\/cthecosmos.com\/?author=120055267#author","url":"https:\/\/cthecosmos.com\/?author=120055267","name":"Yashwanth Naidu Tikkisetty","image":{"@type":"ImageObject","@id":"https:\/\/cthecosmos.com\/?p=4142#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/a02d9f38e4c924587b544c74f6d5de0c8469b6a5c684622f1aa4ea2ba65b17d8?s=96&d=identicon&r=g","width":96,"height":96,"caption":"Yashwanth Naidu Tikkisetty"}},{"@type":"WebPage","@id":"https:\/\/cthecosmos.com\/?p=4142#webpage","url":"https:\/\/cthecosmos.com\/?p=4142","name":"~~~ \ud835\udc7b\ud835\udc89\ud835\udc86 \ud835\udc7a\ud835\udc86\ud835\udc93\ud835\udc8a\ud835\udc86\ud835\udc94 \ud835\udc90\ud835\udc87 \ud835\udc69\ud835\udc8a\ud835\udc88 \ud835\udc76 ~~~\ud835\udc77\ud835\udc82\ud835\udc93\ud835\udc95 \u2013 \ud835\udc70\ud835\udc7d - Yashwanth Naidu Tikkisetty","description":"Polynomial time complexity in algorithms causes tasks to become increasingly complex with each additional input, much like managing a family WhatsApp group. Joining the group is O(n), deciphering messages is O(n^2), and managing disputes is O(n^3). Nested loops and multiple operations on the entire dataset indicate polynomial time complexity, such as O(n^2) or O(n^3).","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/cthecosmos.com\/#website"},"breadcrumb":{"@id":"https:\/\/cthecosmos.com\/?p=4142#breadcrumblist"},"author":{"@id":"https:\/\/cthecosmos.com\/?author=120055267#author"},"creator":{"@id":"https:\/\/cthecosmos.com\/?author=120055267#author"},"image":{"@type":"ImageObject","url":"https:\/\/i0.wp.com\/cthecosmos.com\/wp-content\/uploads\/2024\/04\/ponbigo-p4.png?fit=5093%2C1932&ssl=1","@id":"https:\/\/cthecosmos.com\/?p=4142\/#mainImage","width":5093,"height":1932},"primaryImageOfPage":{"@id":"https:\/\/cthecosmos.com\/?p=4142#mainImage"},"datePublished":"2024-04-27T10:23:50+05:30","dateModified":"2024-04-27T10:23:50+05:30"},{"@type":"WebSite","@id":"https:\/\/cthecosmos.com\/#website","url":"https:\/\/cthecosmos.com\/","name":"Yashwanth Naidu Tikkisetty","description":"Embedded Systems | Space Blogger","inLanguage":"en-US","publisher":{"@id":"https:\/\/cthecosmos.com\/#person"}}]},"og:locale":"en_US","og:site_name":"Yashwanth Naidu Tikkisetty - Embedded Systems | Space Blogger","og:type":"article","og:title":"~~~ \ud835\udc7b\ud835\udc89\ud835\udc86 \ud835\udc7a\ud835\udc86\ud835\udc93\ud835\udc8a\ud835\udc86\ud835\udc94 \ud835\udc90\ud835\udc87 \ud835\udc69\ud835\udc8a\ud835\udc88 \ud835\udc76 ~~~\ud835\udc77\ud835\udc82\ud835\udc93\ud835\udc95 \u2013 \ud835\udc70\ud835\udc7d - Yashwanth Naidu Tikkisetty","og:description":"Polynomial time complexity in algorithms causes tasks to become increasingly complex with each additional input, much like managing a family WhatsApp group. Joining the group is O(n), deciphering messages is O(n^2), and managing disputes is O(n^3). Nested loops and multiple operations on the entire dataset indicate polynomial time complexity, such as O(n^2) or O(n^3).","og:url":"https:\/\/cthecosmos.com\/?p=4142","og:image":"https:\/\/cthecosmos.com\/wp-content\/uploads\/2018\/08\/logo1.png","og:image:secure_url":"https:\/\/cthecosmos.com\/wp-content\/uploads\/2018\/08\/logo1.png","og:image:width":1200,"og:image:height":1200,"article:published_time":"2024-04-27T04:53:50+00:00","article:modified_time":"2024-04-27T04:53:50+00:00","twitter:card":"summary_large_image","twitter:title":"~~~ \ud835\udc7b\ud835\udc89\ud835\udc86 \ud835\udc7a\ud835\udc86\ud835\udc93\ud835\udc8a\ud835\udc86\ud835\udc94 \ud835\udc90\ud835\udc87 \ud835\udc69\ud835\udc8a\ud835\udc88 \ud835\udc76 ~~~\ud835\udc77\ud835\udc82\ud835\udc93\ud835\udc95 \u2013 \ud835\udc70\ud835\udc7d - Yashwanth Naidu Tikkisetty","twitter:description":"Polynomial time complexity in algorithms causes tasks to become increasingly complex with each additional input, much like managing a family WhatsApp group. Joining the group is O(n), deciphering messages is O(n^2), and managing disputes is O(n^3). Nested loops and multiple operations on the entire dataset indicate polynomial time complexity, such as O(n^2) or O(n^3).","twitter:image":"https:\/\/cthecosmos.com\/wp-content\/uploads\/2018\/08\/logo1.png"},"aioseo_meta_data":{"post_id":"4142","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2025-08-31 20:20:33","updated":"2025-08-31 20:20:33","seo_analyzer_scan_date":null,"focus_keyword":null,"additional_keywords":null,"truseo_locale":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/cthecosmos.com\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/cthecosmos.com\/?cat=28627\" title=\"Embedded\">Embedded<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t~~~ \ud835\udc7b\ud835\udc89\ud835\udc86 \ud835\udc7a\ud835\udc86\ud835\udc93\ud835\udc8a\ud835\udc86\ud835\udc94 \ud835\udc90\ud835\udc87 \ud835\udc69\ud835\udc8a\ud835\udc88 \ud835\udc76 ~~~\ud835\udc77\ud835\udc82\ud835\udc93\ud835\udc95 \u2013 \ud835\udc70\ud835\udc7d\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/cthecosmos.com"},{"label":"Embedded","link":"https:\/\/cthecosmos.com\/?cat=28627"},{"label":"~~~ \ud835\udc7b\ud835\udc89\ud835\udc86 \ud835\udc7a\ud835\udc86\ud835\udc93\ud835\udc8a\ud835\udc86\ud835\udc94 \ud835\udc90\ud835\udc87 \ud835\udc69\ud835\udc8a\ud835\udc88 \ud835\udc76 ~~~\ud835\udc77\ud835\udc82\ud835\udc93\ud835\udc95 \u2013 \ud835\udc70\ud835\udc7d","link":"https:\/\/cthecosmos.com\/?p=4142"}],"jetpack_publicize_connections":[],"jetpack_likes_enabled":true,"jetpack_sharing_enabled":true,"jetpack_shortlink":"https:\/\/wp.me\/p8CiEf-14O","jetpack-related-posts":[],"jetpack_featured_media_url":"https:\/\/i0.wp.com\/cthecosmos.com\/wp-content\/uploads\/2024\/04\/ponbigo-p4.png?fit=5093%2C1932&ssl=1","_links":{"self":[{"href":"https:\/\/cthecosmos.com\/index.php?rest_route=\/wp\/v2\/posts\/4142","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/cthecosmos.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/cthecosmos.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/cthecosmos.com\/index.php?rest_route=\/wp\/v2\/users\/120055267"}],"replies":[{"embeddable":true,"href":"https:\/\/cthecosmos.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=4142"}],"version-history":[{"count":5,"href":"https:\/\/cthecosmos.com\/index.php?rest_route=\/wp\/v2\/posts\/4142\/revisions"}],"predecessor-version":[{"id":4148,"href":"https:\/\/cthecosmos.com\/index.php?rest_route=\/wp\/v2\/posts\/4142\/revisions\/4148"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/cthecosmos.com\/index.php?rest_route=\/wp\/v2\/media\/4144"}],"wp:attachment":[{"href":"https:\/\/cthecosmos.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=4142"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/cthecosmos.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=4142"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/cthecosmos.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=4142"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}