알고리즘

    [Leetcode][JS] 1630. Arithmetic Subarrays

    1630. Arithmetic Subarrays 문제 최소 두 개의 원소로 구성되어있는 경우, 연속적인 두개의 원소의 차이가 동일하면 arithmetic하다고 한다 s[i + 1] - s[i] == s[1] - s[0] 인 경우, artimetic하다 더보기 A sequence of numbers is called arithmetic if it consists of at least two elements, and the difference between every two consecutive elements is the same. More formally, a sequence s is arithmetic if and only if s[i+1] - s[i] == s[1] - s[0] for all vali..

    [C언어][알고리즘] 연결리스트 인접리스트 그래프 표현

    #include #include #include #pragma warning (disable:4996) typedef struct graphNode { int vertex; int weight; struct graphNode* link; }graphNode; typedef struct Graph { struct graphNode* adjList[21]; // 인접리스트 }Graph; void insertEdge(Graph* G, int a, int b, int weight); void printAdjList(Graph* G); void printNode(Graph* G, int num); void modifyWeight(Graph* G, int a, int b, int weight); int main()..