René's URL Explorer Experiment


Title: 【0097_Week07】学习总结 · Issue #1270 · algorithm005-class02/algorithm005-class02 · GitHub

Open Graph Title: 【0097_Week07】学习总结 · Issue #1270 · algorithm005-class02/algorithm005-class02

X Title: 【0097_Week07】学习总结 · Issue #1270 · algorithm005-class02/algorithm005-class02

Description: /** * 选择排序 * * @param arr */ public void selectSort(int[] arr) { if (arr.length == 0) return; int maxIndex; for (int i = 0; i < arr.length; i++) { maxIndex = i; for (int j = i + 1; j < arr.length - i; i++) { if (arr[j] > arr[maxIndex]) {...

Open Graph Description: /** * 选择排序 * * @param arr */ public void selectSort(int[] arr) { if (arr.length == 0) return; int maxIndex; for (int i = 0; i < arr.length; i++) { maxIndex = i; for (int j = i + 1; j < arr.length -...

X Description: /** * 选择排序 * * @param arr */ public void selectSort(int[] arr) { if (arr.length == 0) return; int maxIndex; for (int i = 0; i < arr.length; i++) { maxIndex = i; for (int j = i + 1; j < arr.le...

Opengraph URL: https://github.com/algorithm005-class02/algorithm005-class02/issues/1270

X: @github

direct link

Domain: patch-diff.githubusercontent.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"【0097_Week07】学习总结","articleBody":"/**\r\n     * 选择排序\r\n     *\r\n     * @param arr\r\n     */\r\n    public void selectSort(int[] arr) {\r\n        if (arr.length == 0) return;\r\n        int maxIndex;\r\n        for (int i = 0; i \u003c arr.length; i++) {\r\n            maxIndex = i;\r\n            for (int j = i + 1; j \u003c arr.length - i; i++) {\r\n                if (arr[j] \u003e arr[maxIndex]) {\r\n                    maxIndex = j;\r\n                }\r\n            }\r\n            int tmp = arr[arr.length - i];\r\n            arr[arr.length - i] = arr[maxIndex];\r\n            arr[maxIndex] = tmp;\r\n        }\r\n    }\r\n\r\n    /**\r\n     * 插入排序\r\n     *\r\n     * @param arr\r\n     */\r\n    public void insertSort(int[] arr) {\r\n        if (arr.length \u003c= 1) return;\r\n        for (int i = 1; i \u003c arr.length; i++) {\r\n            int preIndex = i - 1, current = arr[i];\r\n            while (preIndex \u003e= 0 \u0026\u0026 arr[preIndex] \u003e current) {\r\n                arr[preIndex + 1] = arr[preIndex];\r\n                preIndex--;\r\n            }\r\n            arr[preIndex + 1] = current;\r\n        }\r\n    }\r\n\r\n    /**\r\n     * 冒泡排序\r\n     *\r\n     * @param arr\r\n     */\r\n    public void bubbleSort(int[] arr) {\r\n        if (arr.length == 0) return;\r\n        for (int i = 0; i \u003c arr.length; i++) {\r\n            for (int j = i + 1; j \u003c arr.length; j++) {\r\n                if (arr[i] \u003e arr[j]) {\r\n                    int t = arr[i];\r\n                    arr[i] = arr[j];\r\n                    arr[j] = t;\r\n                }\r\n            }\r\n        }\r\n    }\r\n\r\n    /**\r\n     * 快速排序\r\n     *\r\n     * @param arr\r\n     * @param begin\r\n     * @param end\r\n     */\r\n    public void quickSort(int[] arr, int begin, int end) {\r\n        if (begin \u003e= end) return;\r\n        int pivot = partition(arr, begin, end);\r\n        quickSort(arr, begin, pivot - 1);\r\n        quickSort(arr, pivot + 1, end);\r\n\r\n    }\r\n\r\n    public int partition(int[] arr, int begin, int end) {\r\n        int pivot = end, count = begin;\r\n        for (int i = begin; i \u003c end; i++) {\r\n            if (arr[i] \u003c arr[pivot]) {\r\n                int tmp = arr[i];\r\n                arr[i] = arr[count];\r\n                arr[count] = tmp;\r\n                count++;\r\n            }\r\n        }\r\n        int tmp = arr[pivot];\r\n        arr[pivot] = arr[count];\r\n        arr[count] = tmp;\r\n        return count;\r\n    }\r\n\r\n    /**\r\n     * 归并排序\r\n     *\r\n     * @param arr\r\n     * @param left\r\n     * @param right\r\n     */\r\n    public void mergeSort(int[] arr, int left, int right) {\r\n        if (arr.length \u003c= 1) return;\r\n        if (right \u003c= left) return;\r\n        int mid = (left + right) \u003e\u003e 1;\r\n        mergeSort(arr, left, mid);\r\n        mergeSort(arr, mid + 1, right);\r\n        merge(arr, left, mid, right);\r\n    }\r\n\r\n    /**\r\n     * 归并排序的合并\r\n     *\r\n     * @param arr\r\n     * @param left\r\n     * @param mid\r\n     * @param right\r\n     */\r\n    public void merge(int[] arr, int left, int mid, int right) {\r\n        int[] temp = new int[right - left + 1];\r\n        int i = left, j = mid + 1, k = 0;\r\n        while (i \u003c= mid \u0026\u0026 j \u003c= right) {\r\n            temp[k++] = arr[i] \u003e= arr[j] ? arr[i++] : arr[j++];\r\n        }\r\n        while (i \u003c= mid) temp[k++] = arr[i++];\r\n        while (j \u003c= right) temp[k++] = arr[k++];\r\n        for (int t = 0; t \u003c temp.length; t++) {\r\n            arr[left + t] = temp[t];\r\n        }\r\n    }","author":{"url":"https://github.com/JiangJiang77","@type":"Person","name":"JiangJiang77"},"datePublished":"2020-03-01T09:25:29.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":0},"url":"https://github.com/1270/algorithm005-class02/issues/1270"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:7222839a-b191-3a54-8cee-a3fb6a616d41
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idD7B2:22E260:2A7A6D4:3919680:697050FC
html-safe-nonce534a663f0bb02b153d0c8eaf799fd2137bace0ba1c01778eac0f30adebacfe81
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJEN0IyOjIyRTI2MDoyQTdBNkQ0OjM5MTk2ODA6Njk3MDUwRkMiLCJ2aXNpdG9yX2lkIjoiODc1OTQyNjQ4MDE0OTEyMzMyNCIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmac0c864e815dc33adde36de44162d9124be1e928f03b09c742f018aee34783a31d
hovercard-subject-tagissue:573513677
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/algorithm005-class02/algorithm005-class02/1270/issue_layout
twitter:imagehttps://opengraph.githubassets.com/0213d36937d5fb0e8776f2028c0084f1663078c4ad6eae6f93dfc0ca1275681b/algorithm005-class02/algorithm005-class02/issues/1270
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/0213d36937d5fb0e8776f2028c0084f1663078c4ad6eae6f93dfc0ca1275681b/algorithm005-class02/algorithm005-class02/issues/1270
og:image:alt/** * 选择排序 * * @param arr */ public void selectSort(int[] arr) { if (arr.length == 0) return; int maxIndex; for (int i = 0; i < arr.length; i++) { maxIndex = i; for (int j = i + 1; j < arr.length -...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernameJiangJiang77
hostnamegithub.com
expected-hostnamegithub.com
None9920a62ba22d06470388e2904804fb7e5ec51c9e35f81784e9191394c74b2bd2
turbo-cache-controlno-preview
go-importgithub.com/algorithm005-class02/algorithm005-class02 git https://github.com/algorithm005-class02/algorithm005-class02.git
octolytics-dimension-user_id58394351
octolytics-dimension-user_loginalgorithm005-class02
octolytics-dimension-repository_id225177649
octolytics-dimension-repository_nwoalgorithm005-class02/algorithm005-class02
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id225177649
octolytics-dimension-repository_network_root_nwoalgorithm005-class02/algorithm005-class02
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
releasef643964067a552f02067066d6a910b2f90a5721f
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://patch-diff.githubusercontent.com/algorithm005-class02/algorithm005-class02/issues/1270#start-of-content
https://patch-diff.githubusercontent.com/
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2Falgorithm005-class02%2Falgorithm005-class02%2Fissues%2F1270
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub SparkBuild and deploy intelligent appshttps://github.com/features/spark
GitHub ModelsManage and compare promptshttps://github.com/features/models
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2Falgorithm005-class02%2Falgorithm005-class02%2Fissues%2F1270
Sign up https://patch-diff.githubusercontent.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=algorithm005-class02%2Falgorithm005-class02
Reloadhttps://patch-diff.githubusercontent.com/algorithm005-class02/algorithm005-class02/issues/1270
Reloadhttps://patch-diff.githubusercontent.com/algorithm005-class02/algorithm005-class02/issues/1270
Reloadhttps://patch-diff.githubusercontent.com/algorithm005-class02/algorithm005-class02/issues/1270
algorithm005-class02 https://patch-diff.githubusercontent.com/algorithm005-class02
algorithm005-class02https://patch-diff.githubusercontent.com/algorithm005-class02/algorithm005-class02
Notifications https://patch-diff.githubusercontent.com/login?return_to=%2Falgorithm005-class02%2Falgorithm005-class02
Fork 116 https://patch-diff.githubusercontent.com/login?return_to=%2Falgorithm005-class02%2Falgorithm005-class02
Star 36 https://patch-diff.githubusercontent.com/login?return_to=%2Falgorithm005-class02%2Falgorithm005-class02
Code https://patch-diff.githubusercontent.com/algorithm005-class02/algorithm005-class02
Issues 615 https://patch-diff.githubusercontent.com/algorithm005-class02/algorithm005-class02/issues
Pull requests 0 https://patch-diff.githubusercontent.com/algorithm005-class02/algorithm005-class02/pulls
Actions https://patch-diff.githubusercontent.com/algorithm005-class02/algorithm005-class02/actions
Projects 0 https://patch-diff.githubusercontent.com/algorithm005-class02/algorithm005-class02/projects
Security Uh oh! There was an error while loading. Please reload this page. https://patch-diff.githubusercontent.com/algorithm005-class02/algorithm005-class02/security
Please reload this pagehttps://patch-diff.githubusercontent.com/algorithm005-class02/algorithm005-class02/issues/1270
Insights https://patch-diff.githubusercontent.com/algorithm005-class02/algorithm005-class02/pulse
Code https://patch-diff.githubusercontent.com/algorithm005-class02/algorithm005-class02
Issues https://patch-diff.githubusercontent.com/algorithm005-class02/algorithm005-class02/issues
Pull requests https://patch-diff.githubusercontent.com/algorithm005-class02/algorithm005-class02/pulls
Actions https://patch-diff.githubusercontent.com/algorithm005-class02/algorithm005-class02/actions
Projects https://patch-diff.githubusercontent.com/algorithm005-class02/algorithm005-class02/projects
Security https://patch-diff.githubusercontent.com/algorithm005-class02/algorithm005-class02/security
Insights https://patch-diff.githubusercontent.com/algorithm005-class02/algorithm005-class02/pulse
New issuehttps://patch-diff.githubusercontent.com/login?return_to=https://github.com/algorithm005-class02/algorithm005-class02/issues/1270
New issuehttps://patch-diff.githubusercontent.com/login?return_to=https://github.com/algorithm005-class02/algorithm005-class02/issues/1270
【0097_Week07】学习总结https://patch-diff.githubusercontent.com/algorithm005-class02/algorithm005-class02/issues/1270#top
https://github.com/JiangJiang77
https://github.com/JiangJiang77
JiangJiang77https://github.com/JiangJiang77
on Mar 1, 2020https://github.com/algorithm005-class02/algorithm005-class02/issues/1270#issue-573513677
@paramhttps://github.com/param
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.