{"id":5024,"date":"2021-08-31T07:53:01","date_gmt":"2021-08-31T07:53:01","guid":{"rendered":"https:\/\/serkanseker.com\/?p=5024"},"modified":"2021-08-31T07:53:01","modified_gmt":"2021-08-31T07:53:01","slug":"introduction-to-algorithms","status":"publish","type":"post","link":"https:\/\/serkanseker.com\/tr\/introduction-to-algorithms\/","title":{"rendered":"A Brief Introduction to Algorithms"},"content":{"rendered":"<p>Algorithms are the steps of the process that are followed in a way designed to solve a certain problem or achieve a certain goal. In other words, it means a set of rules (instructions) that define step by step how to run a job to achieve expected results.<\/p>\n<p>Algorithms are a finite set of operations with a definite beginning and end. In order to reach the goal, the solutions and steps to be processed are determined and the algorithm follows these steps in order and reaches the desired solution.<\/p>\n<p>Let\u2019s look at the cooking example to better understand what the algorithm is. When you read the instructions and follow the steps in order to cook a new dish, the result is a freshly cooked dish. So the recipe has served its purpose. Similarly, algorithms also help to perform a task in programming to get the expected output.<\/p>\n<p>Algorithms are often used in computer science. All programming languages \u200b\u200bare based on algorithms. Therefore, algorithms can be operated by computers through a programming language. A designed algorithm is language independent, meaning that simple instructions that can be executed in any language will have the same output as expected.<\/p>\n<p>The first algorithm was presented by al-Kharizmi in his book \u201cHisab al-cebir ve al-mukabala\u201d. The word algorithm was born from the European pronunciation of al-Kharizmi\u2019s name.<\/p>\n<h2 class=\"wp-block-heading\">What are the Features of Algorithms?<\/h2>\n<p>It should be noted that not all written instructions for programming are an algorithm. Some commands must have the following properties to be an algorithm:<\/p>\n<ul>\n<li><strong>Should be clear and precise<\/strong>: An algorithm should be clear and precise. Each of its steps should be clear in all its aspects and should mean only one thing.<\/li>\n<li><strong>Inputs should be well-defined<\/strong>: An algorithm\u2019s inputs should be well-defined.<\/li>\n<li><strong>Outputs should be well-defined<\/strong>: The algorithm should clearly define what output will be obtained.<\/li>\n<li><strong>Must be finite<\/strong>: The algorithm must be finite, i.e. not result in an infinite loop or the like.<\/li>\n<li><strong>Should be applicable<\/strong>: The algorithm should be simple, general and practical so that it can be executed according to the available resources. It should not include any future technology or anything.<\/li>\n<li>S<strong>hould be language independent<\/strong>: The designed algorithm should be language independent. So the steps should be applicable in any language. Of course the output will be the same as expected.<\/li>\n<\/ul>\n<h2 class=\"wp-block-heading\">How Are Algorithms Designed?<\/h2>\n<p>The following are needed as a prerequisite for writing an algorithm:<\/p>\n<ul>\n<li><strong>Problem<\/strong>: A problem to be solved by an algorithm.<\/li>\n<li><strong>Constraints<\/strong>: The constraints of the problem that should be considered while solving the problem.<\/li>\n<li><strong>Input<\/strong>: The input to be taken to solve the problem.<\/li>\n<li><strong>Output<\/strong>: The expected output when the problem is solved.<\/li>\n<li><strong>Solution<\/strong>: The solution of this problem in the given constraints.<\/li>\n<\/ul>\n<p>Then, the algorithm is written to solve the problem with the help of the above parameters.<\/p>\n<h2 class=\"wp-block-heading\">Example: Calculate the sum of the 3 entered numbers<\/h2>\n<h3 class=\"wp-block-heading\">1) Providing the Prerequisites<\/h3>\n<p>As I mentioned above, in order to write an algorithm, its prerequisites must be met.<\/p>\n<ol>\n<li><strong>Problem to be solved with this algorithm<\/strong>: Enter 3 numbers and calculate their sum.<\/li>\n<li><strong>Constraints of the problem to be considered while solving the problem<\/strong>: Numbers must be numeric only and must not contain any other characters.<\/li>\n<li><strong>Input to solve the problem<\/strong>: Three numbers to add.<\/li>\n<li><strong>Expected output when problem is solved<\/strong>: The sum of three numbers taken as input.<\/li>\n<li><strong>The solution to this problem with the given constraints<\/strong>: The sum of the 3 entered numbers. It can be done with the help of the &#8216;+\u2019 operator or bitwise or any other method.<\/li>\n<\/ol>\n<h3 class=\"wp-block-heading\">2) Designing the Algorithm<\/h3>\n<p>Now let\u2019s design the algorithm with the help of the above prerequisites:<\/p>\n<ol>\n<li>START<\/li>\n<li>Define 3 integer variables, num1, num2, and num3.<\/li>\n<li>Get the 3 numbers to add as inputs in the num1, num2 and num3 variables.<\/li>\n<li>Define an integer variable (sum) to store the sum of 3 numbers.<\/li>\n<li>Add the 3 numbers and store the result in the sum variable.<\/li>\n<li>Print the value of the sum variable.<\/li>\n<li>END<\/li>\n<\/ol>\n<h3 class=\"wp-block-heading\">3) Testing by Implementing the Algorithm<\/h3>\n<p>Let\u2019s implement it in Java language to test the algorithm:<\/p>\n<pre class=\"wp-block-prismatic-blocks\"><code class=\"language-java\">import java.util.Scanner;\n\nclass SumOfThreeNumbers{\n\tpublic static void main(String args[]){\n\t\tint num1,num2,num3;\n\t\tSystem.out.println(&quot;Please enter 3 integer values&quot;);\n\t\tScanner in = new Scanner(System.in);\n\t\tnum1 = in.nextInt();\n\t\tnum2 = in.nextInt();\n\t\tnum3 = in.nextInt();\n\t\tint sum=num1+num2+num3;\n\t\tSystem.out.println(&quot;Result: &quot;+sum);\n\t}\n}<\/code><\/pre>\n<p>The output of the program will be as follows:<\/p>\n<pre class=\"wp-block-code\"><code>Please enter 3 integer values\n12\n40\n7\nResult: 59<\/code><\/pre>\n<h2 class=\"wp-block-heading\">Analysis of Algorithms<\/h2>\n<h3 class=\"wp-block-heading\">Priori Analysis<\/h3>\n<p>\u201cPriori\u201d means \u201cbefore\u201d. Therefore, Priori analysis means checking the algorithm before its implementation. In this analysis, the algorithm is checked when written in theoretical steps. The efficiency of the algorithm is measured assuming all other factors, such as processor speed, are constant and have no effect on the application. This is usually done by the algorithm designer. The algorithm complexity is determined by this method.<\/p>\n<h3 class=\"wp-block-heading\">Posterior Analysis<\/h3>\n<p>\u201cPosterior\u201d means \u201cafter, back\u201d. So Posterior Analysis is the checking of the algorithm after its implementation. The algorithm is checked by implementing and running it in any programming language. This analysis is based on accuracy, space required, time spent, etc. It helps to get the real analysis report about.<\/p>\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"600\" height=\"400\" src=\"https:\/\/www.serkanseker.com\/wp-content\/uploads\/2021\/08\/what-is-algorithm.jpg\" alt=\"What is Algorithms?\" class=\"wp-image-4092\" \/><figcaption>What is Algorithms?<\/figcaption><\/figure>\n<h2 class=\"wp-block-heading\">Complexity in Algorithms<\/h2>\n<ul>\n<li><strong>Time Factor<\/strong>: Time is measured by counting the number of key operations such as comparisons in the sorting algorithm.<\/li>\n<li><strong>Space Factor<\/strong>: Space is measured by counting the maximum memory space required by the algorithm.<\/li>\n<\/ul>\n<h3 class=\"wp-block-heading\">Space Complexity<\/h3>\n<p>The space complexity of an algorithm refers to the amount of memory that algorithm needs to execute and get the result. These inputs can be for transients or outputs.<\/p>\n<p>The space complexity of an algorithm is calculated by determining the following 2 components:<\/p>\n<ul>\n<li><strong>Fixed Part<\/strong>: The area that the algorithm absolutely needs. For example, input variables, output variables, program size, etc.<\/li>\n<li><strong>Variable Part<\/strong>: The area that can be different depending on the implementation of the algorithm. For example, temporary variables, dynamic memory allocation, recursion heap space etc.<\/li>\n<\/ul>\n<h3 class=\"wp-block-heading\">Time Complexity<\/h3>\n<p>The time complexity of an algorithm refers to the time it takes to execute that algorithm and get the result. This includes regular operations, conditional if-else statements, loop statements, etc. it could be.<\/p>\n<p>The time complexity of an algorithm is also calculated by determining the following 2 components:<\/p>\n<ul>\n<li><strong>Constant Time Part<\/strong>: Any instruction executed only once comes into this part. For example, input, output, if-else, key etc.<\/li>\n<li><strong>Variable Time Part<\/strong>: Any command executed more than once, for example n times, comes to this part. For example loops, recursion etc.<\/li>\n<\/ul>\n<h2 class=\"wp-block-heading\">Final Thoughts<\/h2>\n<p>In summary, algorithms are a set of computations that take some values as input and produce some values as output. In other words, it is the whole of the steps that receives, processes and produces outputs.<\/p>\n<p>The ability to solve algorithms is the most important foundation for us to be a successful developer. In many technical interviews, the developer\u2019s ability to solve algorithms is evaluated. Therefore, you should design algorithms well, analyze them well and reach the desired solution.<\/p>\n<p><strong>Resources<\/strong>:<\/p>\n<ul>\n<li>https:\/\/www.geeksforgeeks.org\/introduction-to-algorithms\/<\/li>\n<li>https:\/\/tr.wikipedia.org\/wiki\/Algoritma<\/li>\n<\/ul>\n<p>The post <a href=\"https:\/\/www.serkanseker.com\/introduction-to-algorithms\/\">A Brief Introduction to Algorithms<\/a> appeared first on <a href=\"https:\/\/www.serkanseker.com\">Serkan&#039;s MAUI Blog<\/a>.<\/p>\n<p>]&gt;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Algorithms are the steps of the process that are followed in a way designed to solve a certain problem or achieve a certain goal. In other words, it means a set of rules (instructions) that define step by step how to run<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_coblocks_attr":"","_coblocks_dimensions":"","_coblocks_responsive_height":"","_coblocks_accordion_ie_support":"","footnotes":""},"categories":[583],"tags":[],"class_list":["post-5024","post","type-post","status-publish","format-standard","hentry","category-algorithms"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.0 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>A Brief Introduction to Algorithms - Serkan Seker TR<\/title>\n<meta name=\"robots\" content=\"noindex, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"A Brief Introduction to Algorithms - Serkan Seker TR\" \/>\n<meta property=\"og:description\" content=\"Algorithms are the steps of the process that are followed in a way designed to solve a certain problem or achieve a certain goal. In other words, it means a set of rules (instructions) that define step by step how to run\" \/>\n<meta property=\"og:url\" content=\"https:\/\/serkanseker.com\/tr\/introduction-to-algorithms\/\" \/>\n<meta property=\"og:site_name\" content=\"Serkan Seker TR\" \/>\n<meta property=\"article:published_time\" content=\"2021-08-31T07:53:01+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.serkanseker.com\/wp-content\/uploads\/2021\/08\/what-is-algorithm.jpg\" \/>\n<meta name=\"author\" content=\"serkanadmin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"serkanadmin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/serkanseker.com\/tr\/introduction-to-algorithms\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/serkanseker.com\/tr\/introduction-to-algorithms\/\"},\"author\":{\"name\":\"serkanadmin\",\"@id\":\"https:\/\/serkanseker.com\/tr\/#\/schema\/person\/841fcc69b248e08e52c4190963caeaf5\"},\"headline\":\"A Brief Introduction to Algorithms\",\"datePublished\":\"2021-08-31T07:53:01+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/serkanseker.com\/tr\/introduction-to-algorithms\/\"},\"wordCount\":1134,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/serkanseker.com\/tr\/introduction-to-algorithms\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.serkanseker.com\/wp-content\/uploads\/2021\/08\/what-is-algorithm.jpg\",\"articleSection\":[\"Algorithms\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/serkanseker.com\/tr\/introduction-to-algorithms\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/serkanseker.com\/tr\/introduction-to-algorithms\/\",\"url\":\"https:\/\/serkanseker.com\/tr\/introduction-to-algorithms\/\",\"name\":\"A Brief Introduction to Algorithms - Serkan Seker TR\",\"isPartOf\":{\"@id\":\"https:\/\/serkanseker.com\/tr\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/serkanseker.com\/tr\/introduction-to-algorithms\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/serkanseker.com\/tr\/introduction-to-algorithms\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.serkanseker.com\/wp-content\/uploads\/2021\/08\/what-is-algorithm.jpg\",\"datePublished\":\"2021-08-31T07:53:01+00:00\",\"author\":{\"@id\":\"https:\/\/serkanseker.com\/tr\/#\/schema\/person\/841fcc69b248e08e52c4190963caeaf5\"},\"breadcrumb\":{\"@id\":\"https:\/\/serkanseker.com\/tr\/introduction-to-algorithms\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/serkanseker.com\/tr\/introduction-to-algorithms\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/serkanseker.com\/tr\/introduction-to-algorithms\/#primaryimage\",\"url\":\"https:\/\/www.serkanseker.com\/wp-content\/uploads\/2021\/08\/what-is-algorithm.jpg\",\"contentUrl\":\"https:\/\/www.serkanseker.com\/wp-content\/uploads\/2021\/08\/what-is-algorithm.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/serkanseker.com\/tr\/introduction-to-algorithms\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/serkanseker.com\/tr\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"A Brief Introduction to Algorithms\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/serkanseker.com\/tr\/#website\",\"url\":\"https:\/\/serkanseker.com\/tr\/\",\"name\":\"Serkan Seker TR\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/serkanseker.com\/tr\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/serkanseker.com\/tr\/#\/schema\/person\/841fcc69b248e08e52c4190963caeaf5\",\"name\":\"serkanadmin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/serkanseker.com\/tr\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/93ddc1f96117bf468976afe93a077eda77de96bcdb48dc749903598a546786a3?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/93ddc1f96117bf468976afe93a077eda77de96bcdb48dc749903598a546786a3?s=96&d=mm&r=g\",\"caption\":\"serkanadmin\"},\"sameAs\":[\"https:\/\/serkanseker.com\"],\"url\":\"https:\/\/serkanseker.com\/tr\/author\/serkanadmin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"A Brief Introduction to Algorithms - Serkan Seker TR","robots":{"index":"noindex","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"og_locale":"en_US","og_type":"article","og_title":"A Brief Introduction to Algorithms - Serkan Seker TR","og_description":"Algorithms are the steps of the process that are followed in a way designed to solve a certain problem or achieve a certain goal. In other words, it means a set of rules (instructions) that define step by step how to run","og_url":"https:\/\/serkanseker.com\/tr\/introduction-to-algorithms\/","og_site_name":"Serkan Seker TR","article_published_time":"2021-08-31T07:53:01+00:00","og_image":[{"url":"https:\/\/www.serkanseker.com\/wp-content\/uploads\/2021\/08\/what-is-algorithm.jpg","type":"","width":"","height":""}],"author":"serkanadmin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"serkanadmin","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/serkanseker.com\/tr\/introduction-to-algorithms\/#article","isPartOf":{"@id":"https:\/\/serkanseker.com\/tr\/introduction-to-algorithms\/"},"author":{"name":"serkanadmin","@id":"https:\/\/serkanseker.com\/tr\/#\/schema\/person\/841fcc69b248e08e52c4190963caeaf5"},"headline":"A Brief Introduction to Algorithms","datePublished":"2021-08-31T07:53:01+00:00","mainEntityOfPage":{"@id":"https:\/\/serkanseker.com\/tr\/introduction-to-algorithms\/"},"wordCount":1134,"commentCount":0,"image":{"@id":"https:\/\/serkanseker.com\/tr\/introduction-to-algorithms\/#primaryimage"},"thumbnailUrl":"https:\/\/www.serkanseker.com\/wp-content\/uploads\/2021\/08\/what-is-algorithm.jpg","articleSection":["Algorithms"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/serkanseker.com\/tr\/introduction-to-algorithms\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/serkanseker.com\/tr\/introduction-to-algorithms\/","url":"https:\/\/serkanseker.com\/tr\/introduction-to-algorithms\/","name":"A Brief Introduction to Algorithms - Serkan Seker TR","isPartOf":{"@id":"https:\/\/serkanseker.com\/tr\/#website"},"primaryImageOfPage":{"@id":"https:\/\/serkanseker.com\/tr\/introduction-to-algorithms\/#primaryimage"},"image":{"@id":"https:\/\/serkanseker.com\/tr\/introduction-to-algorithms\/#primaryimage"},"thumbnailUrl":"https:\/\/www.serkanseker.com\/wp-content\/uploads\/2021\/08\/what-is-algorithm.jpg","datePublished":"2021-08-31T07:53:01+00:00","author":{"@id":"https:\/\/serkanseker.com\/tr\/#\/schema\/person\/841fcc69b248e08e52c4190963caeaf5"},"breadcrumb":{"@id":"https:\/\/serkanseker.com\/tr\/introduction-to-algorithms\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/serkanseker.com\/tr\/introduction-to-algorithms\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/serkanseker.com\/tr\/introduction-to-algorithms\/#primaryimage","url":"https:\/\/www.serkanseker.com\/wp-content\/uploads\/2021\/08\/what-is-algorithm.jpg","contentUrl":"https:\/\/www.serkanseker.com\/wp-content\/uploads\/2021\/08\/what-is-algorithm.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/serkanseker.com\/tr\/introduction-to-algorithms\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/serkanseker.com\/tr\/"},{"@type":"ListItem","position":2,"name":"A Brief Introduction to Algorithms"}]},{"@type":"WebSite","@id":"https:\/\/serkanseker.com\/tr\/#website","url":"https:\/\/serkanseker.com\/tr\/","name":"Serkan Seker TR","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/serkanseker.com\/tr\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/serkanseker.com\/tr\/#\/schema\/person\/841fcc69b248e08e52c4190963caeaf5","name":"serkanadmin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/serkanseker.com\/tr\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/93ddc1f96117bf468976afe93a077eda77de96bcdb48dc749903598a546786a3?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/93ddc1f96117bf468976afe93a077eda77de96bcdb48dc749903598a546786a3?s=96&d=mm&r=g","caption":"serkanadmin"},"sameAs":["https:\/\/serkanseker.com"],"url":"https:\/\/serkanseker.com\/tr\/author\/serkanadmin\/"}]}},"_links":{"self":[{"href":"https:\/\/serkanseker.com\/tr\/wp-json\/wp\/v2\/posts\/5024","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/serkanseker.com\/tr\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/serkanseker.com\/tr\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/serkanseker.com\/tr\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/serkanseker.com\/tr\/wp-json\/wp\/v2\/comments?post=5024"}],"version-history":[{"count":0,"href":"https:\/\/serkanseker.com\/tr\/wp-json\/wp\/v2\/posts\/5024\/revisions"}],"wp:attachment":[{"href":"https:\/\/serkanseker.com\/tr\/wp-json\/wp\/v2\/media?parent=5024"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/serkanseker.com\/tr\/wp-json\/wp\/v2\/categories?post=5024"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/serkanseker.com\/tr\/wp-json\/wp\/v2\/tags?post=5024"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}