📄 glist.c
字号:
/* ==================================================================== * Copyright (c) 1999-2004 Carnegie Mellon University. All rights * reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * This work was supported in part by funding from the Defense Advanced * Research Projects Agency and the National Science Foundation of the * United States of America, and the CMU Sphinx Speech Consortium. * * THIS SOFTWARE IS PROVIDED BY CARNEGIE MELLON UNIVERSITY ``AS IS'' AND * ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY * NOR ITS EMPLOYEES BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * * ==================================================================== * *//* * glist.h -- Module for maintaining a generic, linear linked-list structure. * * ********************************************** * CMU ARPA Speech Project * * Copyright (c) 1999 Carnegie Mellon University. * ALL RIGHTS RESERVED. * ********************************************** * * HISTORY * * 09-Mar-1999 M K Ravishankar (rkm@cs.cmu.edu) at Carnegie Mellon University * Added glist_chkdup_*(). * * 13-Feb-1999 M K Ravishankar (rkm@cs.cmu.edu) at Carnegie Mellon University * Created from earlier version. */#include <stdio.h>#include <stdlib.h>#include <string.h>#include <assert.h>#include "glist.h"#include "ckd_alloc.h"glist_t glist_add_ptr (glist_t g, void *ptr){ gnode_t *gn; gn = (gnode_t *) mymalloc (sizeof(gnode_t)); gn->data.ptr = ptr; gn->next = g; return ((glist_t) gn); /* Return the new head of the list */}glist_t glist_add_int32 (glist_t g, int32 val){ gnode_t *gn; gn = (gnode_t *) mymalloc (sizeof(gnode_t)); gn->data.i_32 = val; gn->next = g; return ((glist_t) gn); /* Return the new head of the list */}glist_t glist_add_uint32 (glist_t g, uint32 val){ gnode_t *gn; gn = (gnode_t *) mymalloc (sizeof(gnode_t)); gn->data.ui_32 = val; gn->next = g; return ((glist_t) gn); /* Return the new head of the list */}glist_t glist_add_float32 (glist_t g, float32 val){ gnode_t *gn; gn = (gnode_t *) mymalloc (sizeof(gnode_t)); gn->data.fl_32 = val; gn->next = g; return ((glist_t) gn); /* Return the new head of the list */}glist_t glist_add_float64 (glist_t g, float64 val){ gnode_t *gn; gn = (gnode_t *) mymalloc (sizeof(gnode_t)); gn->data.fl_64 = val; gn->next = g; return ((glist_t) gn); /* Return the new head of the list */}int32 glist_chkdup_ptr (glist_t g, void *val){ gnode_t *gn; for (gn = g; gn; gn = gnode_next(gn)) if (gnode_ptr(gn) == val) return 1; return 0;}int32 glist_chkdup_int32 (glist_t g, int32 val){ gnode_t *gn; for (gn = g; gn; gn = gnode_next(gn)) if (gnode_int32(gn) == val) return 1; return 0;}int32 glist_chkdup_uint32 (glist_t g, uint32 val){ gnode_t *gn; for (gn = g; gn; gn = gnode_next(gn)) if (gnode_uint32(gn) == val) return 1; return 0;}int32 glist_chkdup_float32 (glist_t g, float32 val){ gnode_t *gn; for (gn = g; gn; gn = gnode_next(gn)) if (gnode_float32(gn) == val) return 1; return 0;}int32 glist_chkdup_float64 (glist_t g, float64 val){ gnode_t *gn; for (gn = g; gn; gn = gnode_next(gn)) if (gnode_float64(gn) == val) return 1; return 0;}void glist_apply_ptr (glist_t g, void (*func)(void *)){ gnode_t *gn; for (gn = g; gn; gn = gn->next) (*func)(gn->data.ptr);}void glist_apply_int32 (glist_t g, void (*func)(int32)){ gnode_t *gn; for (gn = g; gn; gn = gn->next) (*func)(gn->data.i_32);}void glist_apply_uint32 (glist_t g, void (*func)(uint32)){ gnode_t *gn; for (gn = g; gn; gn = gn->next) (*func)(gn->data.ui_32);}void glist_apply_float32 (glist_t g, void (*func)(float32)){ gnode_t *gn; for (gn = g; gn; gn = gn->next) (*func)(gn->data.fl_32);}void glist_apply_float64 (glist_t g, void (*func)(float64)){ gnode_t *gn; for (gn = g; gn; gn = gn->next) (*func)(gn->data.fl_64);}void glist_free (glist_t g){ gnode_t *gn; while (g) { gn = g; g = gn->next; myfree((char *)gn, sizeof(gnode_t)); }}void glist_myfree (glist_t g, int32 datasize){ gnode_t *gn; while (g) { gn = g; g = gn->next; myfree((char *)(gn->data.ptr), datasize); myfree((char *)gn, sizeof(gnode_t)); }}int32 glist_count (glist_t g){ gnode_t *gn; int32 n; for (gn = g, n = 0; gn; gn = gn->next, n++); return n;}gnode_t *glist_tail (glist_t g){ gnode_t *gn; if (! g) return NULL; for (gn = g; gn->next; gn = gn->next); return gn;}glist_t glist_reverse (glist_t g){ gnode_t *gn, *nextgn; gnode_t *rev; rev = NULL; for (gn = g; gn; gn = nextgn) { nextgn = gn->next; gn->next = rev; rev = gn; } return rev;}gnode_t *glist_insert_ptr (gnode_t *gn, void *ptr){ gnode_t *newgn; newgn = (gnode_t *) mymalloc (sizeof(gnode_t)); newgn->data.ptr = ptr; newgn->next = gn->next; gn->next = newgn; return newgn;}gnode_t *glist_insert_int32 (gnode_t *gn, int32 val){ gnode_t *newgn; newgn = (gnode_t *) mymalloc (sizeof(gnode_t)); newgn->data.i_32 = val; newgn->next = gn->next; gn->next = newgn; return newgn;}gnode_t *glist_insert_uint32 (gnode_t *gn, uint32 val){ gnode_t *newgn; newgn = (gnode_t *) mymalloc (sizeof(gnode_t)); newgn->data.ui_32 = val; newgn->next = gn->next; gn->next = newgn; return newgn;}gnode_t *glist_insert_float32 (gnode_t *gn, float32 val){ gnode_t *newgn; newgn = (gnode_t *) mymalloc (sizeof(gnode_t)); newgn->data.fl_32 = val; newgn->next = gn->next; gn->next = newgn; return newgn;}gnode_t *glist_insert_float64 (gnode_t *gn, float64 val){ gnode_t *newgn; newgn = (gnode_t *) mymalloc (sizeof(gnode_t)); newgn->data.fl_64 = val; newgn->next = gn->next; gn->next = newgn; return newgn;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -