{"id":20705640,"url":"https://github.com/jaydattpatel/binary-tree","last_synced_at":"2026-01-23T00:28:49.111Z","repository":{"id":185300149,"uuid":"620284642","full_name":"jaydattpatel/Binary-Tree","owner":"jaydattpatel","description":"Different Operation on Binary Tree Structure","archived":false,"fork":false,"pushed_at":"2024-08-01T15:59:04.000Z","size":13,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-23T01:42:16.820Z","etag":null,"topics":["bfs-search","binary-tree","breadth-first-search","c","c-language","cplusplus","cpp","depth-first-search","dfs-search","inorder-traversal","levelorder-traversal","online-manipal-bca","postorder-traversal","preorder-traversal","tree-height"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jaydattpatel.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2023-03-28T11:42:31.000Z","updated_at":"2024-08-07T13:52:17.000Z","dependencies_parsed_at":"2025-04-23T01:46:58.000Z","dependency_job_id":null,"html_url":"https://github.com/jaydattpatel/Binary-Tree","commit_stats":null,"previous_names":["jaydattpatel/binary-tree"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jaydattpatel/Binary-Tree","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaydattpatel%2FBinary-Tree","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaydattpatel%2FBinary-Tree/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaydattpatel%2FBinary-Tree/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaydattpatel%2FBinary-Tree/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jaydattpatel","download_url":"https://codeload.github.com/jaydattpatel/Binary-Tree/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jaydattpatel%2FBinary-Tree/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28676145,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-22T20:48:19.482Z","status":"ssl_error","status_checked_at":"2026-01-22T20:48:14.968Z","response_time":144,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bfs-search","binary-tree","breadth-first-search","c","c-language","cplusplus","cpp","depth-first-search","dfs-search","inorder-traversal","levelorder-traversal","online-manipal-bca","postorder-traversal","preorder-traversal","tree-height"],"created_at":"2024-11-17T01:18:53.295Z","updated_at":"2026-01-23T00:28:49.089Z","avatar_url":"https://github.com/jaydattpatel.png","language":"C++","readme":"# Binary-Tree\nDifferent Operation on Binary Tree Structure\n\u003cdiv id=\"badges\"\u003e\n  \u003cimg src=\"https://api.visitorbadge.io/api/visitors?path=jaydattpatel%2FBinary-Tree\u0026label=Visitors\u0026labelColor=%23720026\u0026countColor=%23ffae00\" alt=\"Visitor badge\" width=\"100\" height=\"28\"/\u003e\n\u003c/div\u003e\n\n\nCREATE BINARY TREE\n                                                    \n                                                      (1,A)\n                                         _______________|________________        \n                                         |                              |\n                                       (2,B)                          (3,C)\n                                 ________|________              ________|________        \n                                 |               |              |               |\n                               (4,D)          (5,E)           (6,F)           (7,G)\n                              ___|___        ___|___         ___|___         ___|___\n                              |     |        |     |         |     |         |     |\n                            (8,H)  (9,I)  (10,J)  (11,K)  (12,L)  (13,M)  (14,N)  (15,O)\n                            \n                            \nInorder is: [4, D]  [2, B]  [5, E]  [1, A]  [6, F]  [3, C]  [7, G]\n\nPreorder is: [1, A]  [2, B]  [4, D]  [5, E]  [3, C]  [6, F]  [7, G]\n\nPostorder is: [4, D]  [5, E]  [2, B]  [6, F]  [7, G]  [3, C]  [1, A]\n\nBFS levelorder is:  [1, A]   [2, B]   [3, C]   [4, D]   [5, E]   [6, F]   [7, G]\n\nHeight of Tree : 3\n\nDFS levelorder is: [4, D]  [5, E]  [6, F]  [7, G]  [2, B]  [3, C]  [1, A]\n\nPrint value of level:\n        Level-1: [1, A]\n        Level-2: [2, B]  [3, C]\n        Level-3: [4, D]  [5, E]  [6, F]  [7, G] \n        \n       \n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjaydattpatel%2Fbinary-tree","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjaydattpatel%2Fbinary-tree","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjaydattpatel%2Fbinary-tree/lists"}