[PR #10] [MERGED] Added Longest increasing subsequence algorithm, and optimized variance.c #220

Open
opened 2026-01-29 15:10:00 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/10
Author: @alaouimehdi1995
Created: 4/5/2017
Status: Merged
Merged: 4/15/2017
Merged by: @dynamitechetan

Base: masterHead: master


📝 Commits (4)

  • 1633281 Modified variance.c: renamed file (lowercase), better filling method (with realloc), optimized sorting and more readable code
  • fb4ce20 Adding an algorithm that returns the longest increasing subsequence from an array
  • b893041 Optimizing code and renaming variables
  • a70400e Main reviewed, space added between operators (+,..)

📊 Changes

4 files changed (+142 additions, -56 deletions)

View changed files

LongestSubSequence.c (+88 -0)
VARIANCE.C (+0 -56)
📝 a.out (+0 -0)
variance.c (+54 -0)

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/TheAlgorithms/C/pull/10 **Author:** [@alaouimehdi1995](https://github.com/alaouimehdi1995) **Created:** 4/5/2017 **Status:** ✅ Merged **Merged:** 4/15/2017 **Merged by:** [@dynamitechetan](https://github.com/dynamitechetan) **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (4) - [`1633281`](https://github.com/TheAlgorithms/C/commit/1633281630e060b062ed32cdbe2237054f90b18e) Modified variance.c: renamed file (lowercase), better filling method (with realloc), optimized sorting and more readable code - [`fb4ce20`](https://github.com/TheAlgorithms/C/commit/fb4ce2069952a8031306d4a1b430c1cad0f78dd6) Adding an algorithm that returns the longest increasing subsequence from an array - [`b893041`](https://github.com/TheAlgorithms/C/commit/b893041e478fe546612056f6a31f29bf7634f50b) Optimizing code and renaming variables - [`a70400e`](https://github.com/TheAlgorithms/C/commit/a70400eead235c8d9143c5c2ec8e2325c6eade59) Main reviewed, space added between operators (+,..) ### 📊 Changes **4 files changed** (+142 additions, -56 deletions) <details> <summary>View changed files</summary> ➕ `LongestSubSequence.c` (+88 -0) ➖ `VARIANCE.C` (+0 -56) 📝 `a.out` (+0 -0) ➕ `variance.c` (+54 -0) </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
claunia added the pull-request label 2026-01-29 15:10:00 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#220