ArrayListType is_in_list(ArrayListType *L,int val)
{
int i;
int position = 0;
ArrayListType T;
T.length = 0;
T.list[position] = L->list[position];
for(i=0 ; i<L->length; i++)
{
if(T.list[i] == val)
{
T.length++;
return T;
}
T.length++;
}
T.length = -1;
return T;
}
'이전것 > Algorithm' 카테고리의 다른 글
단순 연결 리스트 (1) (0) | 2014.04.10 |
---|---|
단순 연결리스트 (0) | 2014.04.09 |
도전 프로그래밍 2-3 (0) | 2014.04.09 |
정적 리스트 (0) | 2014.04.07 |
SparseMatrix (0) | 2014.04.03 |