{"id":20046345,"url":"https://github.com/alainlebret/cpplab","last_synced_at":"2026-05-13T19:33:37.043Z","repository":{"id":195491083,"uuid":"76638530","full_name":"alainlebret/cpplab","owner":"alainlebret","description":"Travaux pratiques de C++ / C++ Laboratory Works","archived":false,"fork":false,"pushed_at":"2019-04-03T12:01:04.000Z","size":158,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-02T07:48:21.007Z","etag":null,"topics":["c","c-plus-plus","labwork","programming-exercises","tp"],"latest_commit_sha":null,"homepage":null,"language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/alainlebret.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"COPYING","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2016-12-16T09:00:58.000Z","updated_at":"2020-04-30T14:22:40.000Z","dependencies_parsed_at":"2023-09-18T08:49:55.889Z","dependency_job_id":null,"html_url":"https://github.com/alainlebret/cpplab","commit_stats":null,"previous_names":["alainlebret/cpplab"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/alainlebret/cpplab","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alainlebret%2Fcpplab","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alainlebret%2Fcpplab/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alainlebret%2Fcpplab/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alainlebret%2Fcpplab/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/alainlebret","download_url":"https://codeload.github.com/alainlebret/cpplab/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alainlebret%2Fcpplab/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32997714,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-13T13:14:54.681Z","status":"ssl_error","status_checked_at":"2026-05-13T13:14:51.610Z","response_time":115,"last_error":"SSL_read: 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":["c","c-plus-plus","labwork","programming-exercises","tp"],"created_at":"2024-11-13T11:23:13.707Z","updated_at":"2026-05-13T19:33:37.028Z","avatar_url":"https://github.com/alainlebret.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003c!--\nCopyright (c) 2018 Alain Lebret\nLicensed under the MIT License.\n--\u003e\n\n## Quelques travaux pratiques en C++\n\nL'ensemble des documents provient d'anciens TP de C++ donnés de 1995 à 2003 (sommairement mis à jour en 2018). \n\n### Licences\n\n* L'ensemble des contenus du dépôt (documents, sujets, corrigés et exemples de code) est proposé sous licence [MIT](https://opensource.org/licenses/MIT).\n\n### Liste des TP présents sur ce dépôt \n\n- :one: [Résolution d'une équation du second degré](sujets/tpcpp01.md) (_[correction](correction/corrige_tp01)_)\n- :two: [Déverminage d'un programme](sujets/tpcpp02.md) (_[correction](correction/corrige_tp02)_)\n- :three: [Conversion décimale/binaire](sujets/tpcpp03.md) (_[correction](correction/corrige_tp03)_)\n- :four: [Tri d'un tableau de caractères](sujets/tpcpp04.md) (_[correction](correction/corrige_tp04)_)\n- :five: [Recherche dans un tableau de caractères](sujets/tpcpp05.md) (_[correction](correction/corrige_tp05)_)\n- :six: [Recherche de palindromes](sujets/tpcpp06.md) (_[correction](correction/corrige_tp06)_)\n- :seven: [Lecture et écriture dans un flux d'entrées/sorties](sujets/tpcpp07.md) (_[correction](correction/corrige_tp07)_)\n- :eight: [Tri et recherche dans un fichier](sujets/tpcpp08.md) (_[correction](correction/corrige_tp08)_)\n- :nine: [Compression RLE](sujets/tpcpp09.md) (_[correction](correction/corrige_tp09)_)\n- :keycap_ten: [Chiffrement XOR](sujets/tpcpp10.md) (_[correction](correction/corrige_tp10)_)\n\n### Compilation\n\nDepuis la racine du dépôt :\n\n```bash\nmake\n```\n\nCompiler une cible spécifique :\n\n```bash\nmake tp09\n```\n\nExécuter un TP avec ses ressources :\n\n```bash\nmake run-tp09\n```\n\nLes `makefile.lin` des dossiers `correction/corrige_tpXX` sont conservés et orchestrés par le `Makefile` racine.\n\n-----\n\n## Some laboratory works in C++\n\nAll the documents come from my course presented from 1995 to 1997.\n\n### Licensing\n\n* All repository content (documents, lab handouts, corrections and code samples) is licensed under the [MIT License](https://opensource.org/licenses/MIT).\n\n### List of laboratory works (in _french_)\n\n- :one: [Solving a quadratic equation](sujets/tpcpp01.md) (_[correction](correction/corrige_tp01)_)\n- :two: [Debugging](sujets/tpcpp02.md) (_[correction](correction/corrige_tp02)_)\n- :three: [Conversion from decimal to binary](sujets/tpcpp03.md) (_[correction](correction/corrige_tp03)_)\n- :four: [Sorting](sujets/tpcpp04.md) (_[correction](correction/corrige_tp04)_)\n- :five: [Searching](sujets/tpcpp05.md) (_[correction](correction/corrige_tp05)_)\n- :six: [Palindromes](sujets/tpcpp06.md) (_[correction](correction/corrige_tp06)_)\n- :seven: [I/O streams](sujets/tpcpp07.md) (_[correction](correction/corrige_tp07)_)\n- :eight: [Sorting and searching in a file](sujets/tpcpp08.md) (_[correction](correction/corrige_tp08)_)\n- :nine: [RLE Compression](sujets/tpcpp09.md) (_[correction](correction/corrige_tp09)_)\n- :keycap_ten: [XOR Ciphering](sujets/tpcpp10.md) (_[correction](correction/corrige_tp10)_)\n\n### Build\n\nFrom the repository root:\n\n```bash\nmake\n```\n\nBuild a specific target:\n\n```bash\nmake tp09\n```\n\nRun a TP with required data files:\n\n```bash\nmake run-tp09\n```\n\nLegacy `makefile.lin` files in `correction/corrige_tpXX` are kept and orchestrated by the root `Makefile`.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falainlebret%2Fcpplab","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Falainlebret%2Fcpplab","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falainlebret%2Fcpplab/lists"}