{"id":3170,"date":"2021-06-14T13:19:00","date_gmt":"2021-06-14T07:49:00","guid":{"rendered":"https:\/\/manorinfinity.com\/blog\/linked-list-array-v-s-linked-list-applications-bitsofcs\/"},"modified":"2021-06-14T13:19:00","modified_gmt":"2021-06-14T07:49:00","slug":"linked-list-array-v-s-linked-list-applications-bitsofcs","status":"publish","type":"post","link":"https:\/\/manorinfinity.com\/blog\/2021\/06\/14\/linked-list-array-v-s-linked-list-applications-bitsofcs\/","title":{"rendered":"Linked List | Array v\/s Linked List | Applications | BitsOfCS"},"content":{"rendered":"<p dir=\"ltr\" style=\"line-height: 1.38; margin-bottom: 12pt; margin-top: 12pt; text-align: center;\"><span style=\"font-family: Architects Daughter; font-size: x-large;\"><\/span><\/p>\n<div style=\"clear: both; text-align: center;\">\n<div style=\"clear: both; text-align: left;\"><span style=\"font-size: large;\"><br \/><\/span><\/div>\n<\/div>\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-bottom: 12pt; margin-top: 12pt;\"><span><span style=\"font-family: courier; font-size: large; white-space: pre-wrap;\">Linked list is a linear data structure like array. In array data structure, elements are stored in contiguous memory location but in linked list data structure, elements are not necessarily stored in contiguous memory location. The elements in the linked list are connected with pointers.<\/span><\/span><\/p>\n<h2 style=\"line-height: 1.38; margin-bottom: 12pt; margin-top: 12pt; text-align: left;\"><span style=\"font-family: courier; font-size: large;\"><span><span style=\"white-space: pre-wrap;\"><br \/><\/span><\/span><span><span style=\"white-space: pre-wrap;\">Array v\/s Liked List:&nbsp;<\/span><\/span><\/span><\/h2>\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-bottom: 12pt; margin-top: 12pt;\">\n<ol style=\"text-align: left;\">\n<li><span><span style=\"font-family: courier; font-size: large; white-space: pre-wrap;\">&nbsp;Array is a random access data structure, that means we can randomly access an element in an array. But in the linked list, random access is not allowed. If we want to access an element in the linked list we have to sequentially traverse the linked list from the first element.&nbsp;<\/span><\/span><\/li>\n<li><span><span style=\"font-family: courier; font-size: large; white-space: pre-wrap;\">&nbsp;We cannot create an array dynamically, but linked lists are formed using <a href=\"https:\/\/www.bitsofcs.xyz\/2021\/06\/self-referential-structure.html\" target=\"_blank\" rel=\"noopener noreferrer\">self referential structure<\/a> and in structure we can create the data dynamically. Hence there is no need to define the size of data structures like arrays, because we can create the new elements dynamically(during the runtime of the program.)<\/span><\/span><\/li>\n<li><span><span style=\"font-family: courier; font-size: large; white-space: pre-wrap;\">&nbsp;There is no pointer handling in the array, But in the linked list every element takes extra memory space for pointers.<\/span><\/span><\/li>\n<\/ol>\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-bottom: 12pt; margin-top: 12pt;\"><span><span style=\"font-family: courier; font-size: large; white-space: pre-wrap;\"><br \/><\/span><\/span><\/p>\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-bottom: 12pt; margin-top: 12pt;\"><span><span style=\"font-family: courier; font-size: large; white-space: pre-wrap;\"><b>Example<\/b>&#8211; <\/span><\/span><\/p>\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-bottom: 12pt; margin-top: 12pt; text-align: center;\"><span style=\"font-family: courier; font-size: large;\"><\/span><\/p>\n<div style=\"clear: both; text-align: center;\"><span style=\"font-family: courier; font-size: large;\"><img data-recalc-dims=\"1\" height=\"201\" width=\"300\" decoding=\"async\" border=\"0\" data-original-height=\"322\" data-original-width=\"481\" src=\"https:\/\/i0.wp.com\/explore.techenutia.com\/wp-content\/uploads\/2021\/06\/asd-2B-25281-2529-300x201.png?resize=300%2C201&#038;ssl=1\" \/><\/span><\/div>\n<div style=\"clear: both; text-align: center;\"><span style=\"font-family: courier; font-size: large;\"><br \/><\/span><\/div>\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-bottom: 12pt; margin-top: 12pt; text-align: center;\">\n<div style=\"clear: both; text-align: center;\"><span style=\"font-family: courier; font-size: large;\"><img data-recalc-dims=\"1\" height=\"125\" width=\"300\" decoding=\"async\" border=\"0\" data-original-height=\"254\" data-original-width=\"612\" src=\"https:\/\/i0.wp.com\/explore.techenutia.com\/wp-content\/uploads\/2021\/06\/sd-1-300x125.png?resize=300%2C125&#038;ssl=1\" \/><\/span><\/div>\n<p><span style=\"font-family: courier; font-size: large;\"><\/p>\n<p><\/span><\/p>\n<h2 style=\"line-height: 1.38; margin-bottom: 12pt; margin-top: 12pt; text-align: left;\"><span><span style=\"font-family: courier; font-size: large; white-space: pre-wrap;\">Application of Linked List:<\/span><\/span><\/h2>\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-bottom: 12pt; margin-top: 12pt;\">\n<ol style=\"text-align: left;\">\n<li><span><span style=\"font-family: courier; font-size: large; white-space: pre-wrap;\">&nbsp;Different data structures like queue and stack can be implemented using linked lists.<\/span><\/span><\/li>\n<li><span><span style=\"font-family: courier; font-size: large; white-space: pre-wrap;\">&nbsp;Linked list can be used to implement adjacency list representation of graphs.<\/span><\/span><\/li>\n<li><span><span style=\"font-family: courier; font-size: large; white-space: pre-wrap;\">&nbsp;In order to implement hash table (Open chain hashing)<\/span><\/span><\/li>\n<li><span><span style=\"font-family: courier; font-size: large; white-space: pre-wrap;\">&nbsp;A lot of applications provide the undo functionality that can be implemented using a linked list.<\/span><\/span><\/li>\n<\/ol>\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-bottom: 12pt; margin-top: 12pt;\"><span><span style=\"font-family: courier; font-size: large; white-space: pre-wrap;\"><br \/><\/span><\/span><\/p>\n<h2 style=\"line-height: 1.38; margin-bottom: 12pt; margin-top: 12pt; text-align: left;\"><span><span style=\"font-family: courier; font-size: large; white-space: pre-wrap;\">Types of Linked List:<\/span><\/span><\/h2>\n<p dir=\"ltr\" style=\"line-height: 1.38; margin-bottom: 12pt; margin-top: 12pt;\">\n<ol style=\"text-align: left;\">\n<li><span><span style=\"font-family: courier; font-size: large; white-space: pre-wrap;\">&nbsp;<a href=\"https:\/\/www.bitsofcs.xyz\/2021\/06\/singly-linked-list.html\" target=\"_blank\" rel=\"noopener noreferrer\">Singly Linked List<\/a><\/span><\/span><\/li>\n<li><span><span style=\"font-family: courier; font-size: large; white-space: pre-wrap;\">&nbsp;<a href=\"https:\/\/www.bitsofcs.xyz\/2021\/06\/doubly-linked-list.html\" target=\"_blank\" rel=\"noopener noreferrer\">Doubly Linked List<\/a><\/span><\/span><\/li>\n<li><span><span style=\"font-family: courier; font-size: large; white-space: pre-wrap;\">&nbsp;<a href=\"https:\/\/www.bitsofcs.xyz\/2021\/06\/circular-linked-list.html\" target=\"_blank\" rel=\"noopener noreferrer\">Circular Linked List<\/a><\/span><\/span><\/li>\n<li><span><span style=\"font-family: courier; font-size: large; white-space: pre-wrap;\">&nbsp;<a href=\"https:\/\/www.bitsofcs.xyz\/2021\/06\/doubly-circular-linked-list.html\" target=\"_blank\" rel=\"noopener noreferrer\">Circular Doubly Linked List<\/a><\/span><\/span><\/li>\n<\/ol>\n<p><span style=\"font-family: courier; font-size: large;\"><br \/><\/span><\/p>\n<div>\n<h3 dir=\"ltr\" style=\"line-height: 1.38; margin-bottom: 4pt; margin-top: 14pt;\"><span style=\"font-family: courier; font-size: large;\"><span style=\"font-variant-east-asian: normal; font-variant-numeric: normal; font-weight: 400; vertical-align: baseline; white-space: pre-wrap;\">If you find any problem related to this article, please comment below or contact me <\/span><span style=\"font-variant-east-asian: normal; font-variant-numeric: normal; font-weight: 400; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;\"><a href=\"https:\/\/www.bitsofcs.xyz\/p\/contact-me.html\" target=\"_blank\" rel=\"noopener noreferrer\">here<\/a><\/span><span style=\"font-variant-east-asian: normal; font-variant-numeric: normal; font-weight: 400; vertical-align: baseline; white-space: pre-wrap;\">.<\/span><\/span><\/h3>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Linked list is a linear data structure like array. In array data structure, elements are stored in contiguous memory location but in linked list data structure, elements are not necessarily stored in contiguous memory location. The elements in the linked list are connected with pointers. Array v\/s Liked List:&nbsp; &nbsp;Array&#8230;<\/p>\n<div class=\"more-link-wrapper\"><a class=\"more-link\" href=\"https:\/\/manorinfinity.com\/blog\/2021\/06\/14\/linked-list-array-v-s-linked-list-applications-bitsofcs\/\">Read the post<span class=\"screen-reader-text\">Linked List | Array v\/s Linked List | Applications | BitsOfCS<\/span><\/a><\/div>\n","protected":false},"author":1,"featured_media":3201,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[1],"tags":[],"class_list":["post-3170","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-infinity-fitness","excerpt","zoom","full-without-featured","even","excerpt-0"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v20.12 (Yoast SEO v26.8) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Linked List | Array v\/s Linked List | Applications | BitsOfCS | ManOrInfinity<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/manorinfinity.com\/blog\/2021\/06\/14\/linked-list-array-v-s-linked-list-applications-bitsofcs\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Linked List | Array v\/s Linked List | Applications | BitsOfCS\" \/>\n<meta property=\"og:description\" content=\"Linked list is a linear data structure like array. In array data structure, elements are stored in contiguous memory location but in linked list data structure, elements are not necessarily stored in contiguous memory location. The elements in the linked list are connected with pointers. Array v\/s Liked List:&nbsp; &nbsp;Array&#8230;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/manorinfinity.com\/blog\/2021\/06\/14\/linked-list-array-v-s-linked-list-applications-bitsofcs\/\" \/>\n<meta property=\"og:site_name\" content=\"ManOrInfinity\" \/>\n<meta property=\"article:published_time\" content=\"2021-06-14T07:49:00+00:00\" \/>\n<meta name=\"author\" content=\"manorinfinity\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@manorinfinity\" \/>\n<meta name=\"twitter:site\" content=\"@manorinfinity\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"manorinfinity\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/manorinfinity.com\/blog\/2021\/06\/14\/linked-list-array-v-s-linked-list-applications-bitsofcs\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/manorinfinity.com\/blog\/2021\/06\/14\/linked-list-array-v-s-linked-list-applications-bitsofcs\/\"},\"author\":{\"name\":\"manorinfinity\",\"@id\":\"https:\/\/manorinfinity.com\/blog\/#\/schema\/person\/1172b1895b5eb7e49cc8640e49255901\"},\"headline\":\"Linked List | Array v\/s Linked List | Applications | BitsOfCS\",\"datePublished\":\"2021-06-14T07:49:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/manorinfinity.com\/blog\/2021\/06\/14\/linked-list-array-v-s-linked-list-applications-bitsofcs\/\"},\"wordCount\":284,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/manorinfinity.com\/blog\/#\/schema\/person\/1172b1895b5eb7e49cc8640e49255901\"},\"image\":{\"@id\":\"https:\/\/manorinfinity.com\/blog\/2021\/06\/14\/linked-list-array-v-s-linked-list-applications-bitsofcs\/#primaryimage\"},\"thumbnailUrl\":\"\",\"articleSection\":[\"Infinity Fitness\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/manorinfinity.com\/blog\/2021\/06\/14\/linked-list-array-v-s-linked-list-applications-bitsofcs\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/manorinfinity.com\/blog\/2021\/06\/14\/linked-list-array-v-s-linked-list-applications-bitsofcs\/\",\"url\":\"https:\/\/manorinfinity.com\/blog\/2021\/06\/14\/linked-list-array-v-s-linked-list-applications-bitsofcs\/\",\"name\":\"Linked List | Array v\/s Linked List | Applications | BitsOfCS | ManOrInfinity\",\"isPartOf\":{\"@id\":\"https:\/\/manorinfinity.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/manorinfinity.com\/blog\/2021\/06\/14\/linked-list-array-v-s-linked-list-applications-bitsofcs\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/manorinfinity.com\/blog\/2021\/06\/14\/linked-list-array-v-s-linked-list-applications-bitsofcs\/#primaryimage\"},\"thumbnailUrl\":\"\",\"datePublished\":\"2021-06-14T07:49:00+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/manorinfinity.com\/blog\/2021\/06\/14\/linked-list-array-v-s-linked-list-applications-bitsofcs\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/manorinfinity.com\/blog\/2021\/06\/14\/linked-list-array-v-s-linked-list-applications-bitsofcs\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/manorinfinity.com\/blog\/2021\/06\/14\/linked-list-array-v-s-linked-list-applications-bitsofcs\/#primaryimage\",\"url\":\"\",\"contentUrl\":\"\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/manorinfinity.com\/blog\/2021\/06\/14\/linked-list-array-v-s-linked-list-applications-bitsofcs\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/manorinfinity.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Linked List | Array v\/s Linked List | Applications | BitsOfCS\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/manorinfinity.com\/blog\/#website\",\"url\":\"https:\/\/manorinfinity.com\/blog\/\",\"name\":\"ManOrInfinity\",\"description\":\"Thrive towards greatness\",\"publisher\":{\"@id\":\"https:\/\/manorinfinity.com\/blog\/#\/schema\/person\/1172b1895b5eb7e49cc8640e49255901\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/manorinfinity.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/manorinfinity.com\/blog\/#\/schema\/person\/1172b1895b5eb7e49cc8640e49255901\",\"name\":\"manorinfinity\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/manorinfinity.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"http:\/\/manorinfinity.com\/wp-content\/uploads\/2023\/06\/moi-logo.png\",\"contentUrl\":\"http:\/\/manorinfinity.com\/wp-content\/uploads\/2023\/06\/moi-logo.png\",\"width\":282,\"height\":260,\"caption\":\"manorinfinity\"},\"logo\":{\"@id\":\"https:\/\/manorinfinity.com\/blog\/#\/schema\/person\/image\/\"},\"description\":\"Complex Problem Solver, Outloud Thinker, An Outstanding Writer, and a very curious human being\",\"sameAs\":[\"http:\/\/manorinfinity.com\"],\"url\":\"https:\/\/manorinfinity.com\/blog\/author\/manorinfinity\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Linked List | Array v\/s Linked List | Applications | BitsOfCS | ManOrInfinity","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/manorinfinity.com\/blog\/2021\/06\/14\/linked-list-array-v-s-linked-list-applications-bitsofcs\/","og_locale":"en_US","og_type":"article","og_title":"Linked List | Array v\/s Linked List | Applications | BitsOfCS","og_description":"Linked list is a linear data structure like array. In array data structure, elements are stored in contiguous memory location but in linked list data structure, elements are not necessarily stored in contiguous memory location. The elements in the linked list are connected with pointers. Array v\/s Liked List:&nbsp; &nbsp;Array&#8230;","og_url":"https:\/\/manorinfinity.com\/blog\/2021\/06\/14\/linked-list-array-v-s-linked-list-applications-bitsofcs\/","og_site_name":"ManOrInfinity","article_published_time":"2021-06-14T07:49:00+00:00","author":"manorinfinity","twitter_card":"summary_large_image","twitter_creator":"@manorinfinity","twitter_site":"@manorinfinity","twitter_misc":{"Written by":"manorinfinity","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/manorinfinity.com\/blog\/2021\/06\/14\/linked-list-array-v-s-linked-list-applications-bitsofcs\/#article","isPartOf":{"@id":"https:\/\/manorinfinity.com\/blog\/2021\/06\/14\/linked-list-array-v-s-linked-list-applications-bitsofcs\/"},"author":{"name":"manorinfinity","@id":"https:\/\/manorinfinity.com\/blog\/#\/schema\/person\/1172b1895b5eb7e49cc8640e49255901"},"headline":"Linked List | Array v\/s Linked List | Applications | BitsOfCS","datePublished":"2021-06-14T07:49:00+00:00","mainEntityOfPage":{"@id":"https:\/\/manorinfinity.com\/blog\/2021\/06\/14\/linked-list-array-v-s-linked-list-applications-bitsofcs\/"},"wordCount":284,"commentCount":0,"publisher":{"@id":"https:\/\/manorinfinity.com\/blog\/#\/schema\/person\/1172b1895b5eb7e49cc8640e49255901"},"image":{"@id":"https:\/\/manorinfinity.com\/blog\/2021\/06\/14\/linked-list-array-v-s-linked-list-applications-bitsofcs\/#primaryimage"},"thumbnailUrl":"","articleSection":["Infinity Fitness"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/manorinfinity.com\/blog\/2021\/06\/14\/linked-list-array-v-s-linked-list-applications-bitsofcs\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/manorinfinity.com\/blog\/2021\/06\/14\/linked-list-array-v-s-linked-list-applications-bitsofcs\/","url":"https:\/\/manorinfinity.com\/blog\/2021\/06\/14\/linked-list-array-v-s-linked-list-applications-bitsofcs\/","name":"Linked List | Array v\/s Linked List | Applications | BitsOfCS | ManOrInfinity","isPartOf":{"@id":"https:\/\/manorinfinity.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/manorinfinity.com\/blog\/2021\/06\/14\/linked-list-array-v-s-linked-list-applications-bitsofcs\/#primaryimage"},"image":{"@id":"https:\/\/manorinfinity.com\/blog\/2021\/06\/14\/linked-list-array-v-s-linked-list-applications-bitsofcs\/#primaryimage"},"thumbnailUrl":"","datePublished":"2021-06-14T07:49:00+00:00","breadcrumb":{"@id":"https:\/\/manorinfinity.com\/blog\/2021\/06\/14\/linked-list-array-v-s-linked-list-applications-bitsofcs\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/manorinfinity.com\/blog\/2021\/06\/14\/linked-list-array-v-s-linked-list-applications-bitsofcs\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/manorinfinity.com\/blog\/2021\/06\/14\/linked-list-array-v-s-linked-list-applications-bitsofcs\/#primaryimage","url":"","contentUrl":""},{"@type":"BreadcrumbList","@id":"https:\/\/manorinfinity.com\/blog\/2021\/06\/14\/linked-list-array-v-s-linked-list-applications-bitsofcs\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/manorinfinity.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Linked List | Array v\/s Linked List | Applications | BitsOfCS"}]},{"@type":"WebSite","@id":"https:\/\/manorinfinity.com\/blog\/#website","url":"https:\/\/manorinfinity.com\/blog\/","name":"ManOrInfinity","description":"Thrive towards greatness","publisher":{"@id":"https:\/\/manorinfinity.com\/blog\/#\/schema\/person\/1172b1895b5eb7e49cc8640e49255901"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/manorinfinity.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/manorinfinity.com\/blog\/#\/schema\/person\/1172b1895b5eb7e49cc8640e49255901","name":"manorinfinity","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/manorinfinity.com\/blog\/#\/schema\/person\/image\/","url":"http:\/\/manorinfinity.com\/wp-content\/uploads\/2023\/06\/moi-logo.png","contentUrl":"http:\/\/manorinfinity.com\/wp-content\/uploads\/2023\/06\/moi-logo.png","width":282,"height":260,"caption":"manorinfinity"},"logo":{"@id":"https:\/\/manorinfinity.com\/blog\/#\/schema\/person\/image\/"},"description":"Complex Problem Solver, Outloud Thinker, An Outstanding Writer, and a very curious human being","sameAs":["http:\/\/manorinfinity.com"],"url":"https:\/\/manorinfinity.com\/blog\/author\/manorinfinity\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack_likes_enabled":true,"_links":{"self":[{"href":"https:\/\/manorinfinity.com\/blog\/wp-json\/wp\/v2\/posts\/3170","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/manorinfinity.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/manorinfinity.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/manorinfinity.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/manorinfinity.com\/blog\/wp-json\/wp\/v2\/comments?post=3170"}],"version-history":[{"count":0,"href":"https:\/\/manorinfinity.com\/blog\/wp-json\/wp\/v2\/posts\/3170\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/manorinfinity.com\/blog\/wp-json\/"}],"wp:attachment":[{"href":"https:\/\/manorinfinity.com\/blog\/wp-json\/wp\/v2\/media?parent=3170"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/manorinfinity.com\/blog\/wp-json\/wp\/v2\/categories?post=3170"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/manorinfinity.com\/blog\/wp-json\/wp\/v2\/tags?post=3170"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}