{"id":34066,"date":"2024-11-01T09:23:44","date_gmt":"2024-11-01T09:23:44","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=34066"},"modified":"2024-11-01T10:53:34","modified_gmt":"2024-11-01T10:53:34","slug":"c-coding-test-course-sorting-numbers-1","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/34066\/","title":{"rendered":"C# Coding Test Course, Sorting Numbers 1"},"content":{"rendered":"<p><body><\/p>\n<p>Hello! In this post, we will discuss one of the problems frequently encountered in coding tests using C#: &#8220;Sorting Numbers&#8221;. This tutorial will explain the understanding of algorithm problems, the resolution process in detail, and finally how to implement C# code.<\/p>\n<h2>Problem Description<\/h2>\n<p>\n    This problem requires you to input numbers equal to the given quantity and output those numbers sorted in ascending order. We will solve the problem using various methods along with a basic understanding of sorting algorithms.\n<\/p>\n<h3>Problem Input<\/h3>\n<ul>\n<li>The first line contains the quantity of numbers N (1 \u2264 N \u2264 100,000).<\/li>\n<li>From the second line onward, N lines will contain the numbers. Each number is an integer whose absolute value is less than or equal to 1,000,000.<\/li>\n<\/ul>\n<h3>Problem Output<\/h3>\n<p>\n    Output the sorted results in ascending order from the first line to the Nth line.\n<\/p>\n<h2>Example<\/h2>\n<pre>\nInput\n5\n5\n2\n3\n1\n4\n\nOutput\n1\n2\n3\n4\n5\n<\/pre>\n<h2>Problem Solving Process<\/h2>\n<p>\n    This problem is simply about sorting the given numbers, and we can use various sorting algorithms. In this article, I will explain how to solve the problem using one of the basic sorting algorithms, &#8220;Merge Sort&#8221;, and &#8220;C#&#8217;s built-in sorting methods&#8221;.\n<\/p>\n<h3>1. Merge Sort<\/h3>\n<p>\n    Merge Sort is a type of divide and conquer algorithm, which divides the given array into halves, sorts both halves, and then merges them back together. It has a time complexity of O(N log N) in both average and worst-case scenarios, and it is a stable sorting method.\n<\/p>\n<h4>Merge Sort Procedure<\/h4>\n<ol>\n<li>Recursively divide the array until it is split into single elements.<\/li>\n<li>Sort and merge the split arrays.<\/li>\n<\/ol>\n<h4>Implementing Merge Sort<\/h4>\n<p>Now, let\u2019s implement Merge Sort in C#.<\/p>\n<pre>\n<code>\npublic class MergeSort\n{\n    public static void Sort(int[] array, int left, int right)\n    {\n        if (left &lt; right)\n        {\n            int mid = (left + right) \/ 2;\n\n            \/\/ Divide the array elements\n            Sort(array, left, mid);\n            Sort(array, mid + 1, right);\n\n            \/\/ Merge the sorted halves\n            Merge(array, left, mid, right);\n        }\n    }\n\n    public static void Merge(int[] array, int left, int mid, int right)\n    {\n        int n1 = mid - left + 1;\n        int n2 = right - mid;\n\n        int[] leftArray = new int[n1];\n        int[] rightArray = new int[n2];\n\n        for (int i = 0; i &lt; n1; i++)\n            leftArray[i] = array[left + i];\n\n        for (int j = 0; j &lt; n2; j++)\n            rightArray[j] = array[mid + 1 + j];\n\n        int k = left, l = 0, m = 0;\n\n        while (l &lt; n1 &amp;&amp; m &lt; n2)\n        {\n            if (leftArray[l] &lt;= rightArray[m])\n            {\n                array[k] = leftArray[l];\n                l++;\n            }\n            else\n            {\n                array[k] = rightArray[m];\n                m++;\n            }\n            k++;\n        }\n\n        while (l &lt; n1)\n        {\n            array[k] = leftArray[l];\n            l++;\n            k++;\n        }\n\n        while (m &lt; n2)\n        {\n            array[k] = rightArray[m];\n            m++;\n            k++;\n        }\n    }\n}\n<\/code>\n<\/pre>\n<h3>2. Using C# Built-in Sorting Method<\/h3>\n<p>\n    In C#, using the built-in sorting methods allows for a simpler way to solve the problem. <\/p>\n<pre>\n<code>\nusing System;\n\nclass Program\n{\n    static void Main(string[] args)\n    {\n        int n = int.Parse(Console.ReadLine());\n        int[] numbers = new int[n];\n\n        for (int i = 0; i &lt; n; i++)\n        {\n            numbers[i] = int.Parse(Console.ReadLine());\n        }\n\n        Array.Sort(numbers);\n\n        foreach (var num in numbers)\n        {\n            Console.WriteLine(num);\n        }\n    }\n}\n<\/code>\n<\/pre>\n<h2>Analysis and Conclusion<\/h2>\n<p>\n    This problem is a great opportunity to learn the basics of sorting. We learned how sorting occurs through Merge Sort and C#&#8217;s built-in methods, and which method is more efficient. Since this type of problem is frequently encountered in coding tests, it is advisable to practice often.\n<\/p>\n<p>\n    In the next post, we will cover more complex sorting problems or algorithms. I hope you continue to study and improve your abilities as a coding tester!<\/p>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Hello! In this post, we will discuss one of the problems frequently encountered in coding tests using C#: &#8220;Sorting Numbers&#8221;. This tutorial will explain the understanding of algorithm problems, the resolution process in detail, and finally how to implement C# code. Problem Description This problem requires you to input numbers equal to the given quantity &hellip; <a href=\"https:\/\/atmokpo.com\/w\/34066\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;C# Coding Test Course, Sorting Numbers 1&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[90],"tags":[],"class_list":["post-34066","post","type-post","status-publish","format-standard","hentry","category-c-coding-test-tutorials"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>C# Coding Test Course, Sorting Numbers 1 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8<\/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:\/\/atmokpo.com\/w\/34066\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"C# Coding Test Course, Sorting Numbers 1 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"Hello! In this post, we will discuss one of the problems frequently encountered in coding tests using C#: &#8220;Sorting Numbers&#8221;. This tutorial will explain the understanding of algorithm problems, the resolution process in detail, and finally how to implement C# code. Problem Description This problem requires you to input numbers equal to the given quantity &hellip; \ub354 \ubcf4\uae30 &quot;C# Coding Test Course, Sorting Numbers 1&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/34066\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:23:44+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T10:53:34+00:00\" \/>\n<meta name=\"author\" content=\"root\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@bebubo4\" \/>\n<meta name=\"twitter:site\" content=\"@bebubo4\" \/>\n<meta name=\"twitter:label1\" content=\"\uae00\uc4f4\uc774\" \/>\n\t<meta name=\"twitter:data1\" content=\"root\" \/>\n\t<meta name=\"twitter:label2\" content=\"\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04\" \/>\n\t<meta name=\"twitter:data2\" content=\"3\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/atmokpo.com\/w\/34066\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/34066\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"C# Coding Test Course, Sorting Numbers 1\",\"datePublished\":\"2024-11-01T09:23:44+00:00\",\"dateModified\":\"2024-11-01T10:53:34+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/34066\/\"},\"wordCount\":366,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"C# Coding Test Tutorials\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/34066\/\",\"url\":\"https:\/\/atmokpo.com\/w\/34066\/\",\"name\":\"C# Coding Test Course, Sorting Numbers 1 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:23:44+00:00\",\"dateModified\":\"2024-11-01T10:53:34+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/34066\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/34066\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/34066\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"C# Coding Test Course, Sorting Numbers 1\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/atmokpo.com\/w\/#website\",\"url\":\"https:\/\/atmokpo.com\/w\/\",\"name\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/atmokpo.com\/w\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ko-KR\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\",\"name\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"url\":\"https:\/\/atmokpo.com\/w\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png\",\"contentUrl\":\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png\",\"width\":400,\"height\":400,\"caption\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\"},\"image\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/bebubo4\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\",\"name\":\"root\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g\",\"caption\":\"root\"},\"sameAs\":[\"http:\/\/atmokpo.com\/w\"],\"url\":\"https:\/\/atmokpo.com\/w\/author\/root\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"C# Coding Test Course, Sorting Numbers 1 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","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:\/\/atmokpo.com\/w\/34066\/","og_locale":"ko_KR","og_type":"article","og_title":"C# Coding Test Course, Sorting Numbers 1 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"Hello! In this post, we will discuss one of the problems frequently encountered in coding tests using C#: &#8220;Sorting Numbers&#8221;. This tutorial will explain the understanding of algorithm problems, the resolution process in detail, and finally how to implement C# code. Problem Description This problem requires you to input numbers equal to the given quantity &hellip; \ub354 \ubcf4\uae30 \"C# Coding Test Course, Sorting Numbers 1\"","og_url":"https:\/\/atmokpo.com\/w\/34066\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:23:44+00:00","article_modified_time":"2024-11-01T10:53:34+00:00","author":"root","twitter_card":"summary_large_image","twitter_creator":"@bebubo4","twitter_site":"@bebubo4","twitter_misc":{"\uae00\uc4f4\uc774":"root","\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04":"3\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/atmokpo.com\/w\/34066\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/34066\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"C# Coding Test Course, Sorting Numbers 1","datePublished":"2024-11-01T09:23:44+00:00","dateModified":"2024-11-01T10:53:34+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/34066\/"},"wordCount":366,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["C# Coding Test Tutorials"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/34066\/","url":"https:\/\/atmokpo.com\/w\/34066\/","name":"C# Coding Test Course, Sorting Numbers 1 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:23:44+00:00","dateModified":"2024-11-01T10:53:34+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/34066\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/34066\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/34066\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"C# Coding Test Course, Sorting Numbers 1"}]},{"@type":"WebSite","@id":"https:\/\/atmokpo.com\/w\/#website","url":"https:\/\/atmokpo.com\/w\/","name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","description":"","publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/atmokpo.com\/w\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ko-KR"},{"@type":"Organization","@id":"https:\/\/atmokpo.com\/w\/#organization","name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","url":"https:\/\/atmokpo.com\/w\/","logo":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/","url":"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png","contentUrl":"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png","width":400,"height":400,"caption":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8"},"image":{"@id":"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/bebubo4"]},{"@type":"Person","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7","name":"root","image":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g","caption":"root"},"sameAs":["http:\/\/atmokpo.com\/w"],"url":"https:\/\/atmokpo.com\/w\/author\/root\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack-related-posts":[],"_links":{"self":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/34066","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/comments?post=34066"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/34066\/revisions"}],"predecessor-version":[{"id":34067,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/34066\/revisions\/34067"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=34066"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=34066"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=34066"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}