{"id":20046345,"url":"https://github.com/alainlebret/cpplab","last_synced_at":"2025-03-02T07:48:29.365Z","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-01-12T20:11:57.295Z","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,"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","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241476435,"owners_count":19968916,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":"2025-03-02T07:48:29.336Z","avatar_url":"https://github.com/alainlebret.png","language":"C++","readme":"## Quelques travaux pratiques en C++\n\nL'ensemble des documents provient d'anciens TP de C++ donnés de 1995 à 1997 (sommairement mis à jour). \n\n### Licences\n\n* Les documents (cours, sujets de travaux pratiques et images) sont fournis sous licence Creative Commons [CC BY-NC-SA 4.0](https://creativecommons.org/licenses/by-nc-sa/4.0/) [![License: CC BY-NC-SA 4.0](https://img.shields.io/badge/License-CC%20BY--NC--SA%204.0-lightgrey.svg)](http://creativecommons.org/licenses/by-nc-sa/4.0/) \n\n* Les éléments de solutions et les exemples de code sont quant à eux proposés sous licence [Apache 2.0](http://www.apache.org/licenses/LICENSE-2.0) [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)\n\n### Liste des TP présents sur ce serveur : ###\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_tp04)_)\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-----\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* The documents (courses, laboratory work handouts and images) are provided under the Creative Commons [CC BY-NC-SA 4.0](https://creativecommons.org/licenses/by-nc-sa/4.0/) license [![License: CC BY-NC-SA 4.0](https://img.shields.io/badge/License-CC%20BY--NC--SA%204.0-lightgrey.svg)](http://creativecommons.org/licenses/by-nc-sa/4.0/) \n\n* The code samples are licensed under the [Apache 2.0](http://www.apache.org/licenses/LICENSE-2.0) license [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)\n\n### List of laboratory works (in _french_) : ###\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_tp04)_)\n- :four: [Sorting](sujets/tpcpp04.md) (_[correction](correction/corrige_tp04)_)\n- :five: [Searching](sujets/tpcpp05.md) (_[correction](correction/corrige_tp05)_)\n- :six: [Palindroms](sujets/tpcpp06.md) (_[correction](correction/corrige_tp06)_)\n- :seven: [I/O streams](sujets/tpcpp07.md) (_[correction](correction/corrige_tp07)_)\n- :eight: [Sorting and serching 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 Cyphering](sujets/tpcpp10.md) (_[correction](correction/corrige_tp10)_)","funding_links":[],"categories":[],"sub_categories":[],"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"}