您现在的位置:主页 > 技术中心 > 编程开发 > C

Glib实例学习(1)单链表

来源:一方有 责任编辑:admin 发表时间:2013-07-01 23:21 点击:

1:SList结构

 

  1. typedef struct _GSList GSList;  
  2.  
  3. struct _GSList  
  4. {  
  5. gpointer data;  
  6. GSList *next;  
  7. }; 
2: SList 原型
  1. GSList* g_slist_append (GSList *list,  
  2.                                           gpointer data) G_GNUC_WARN_UNUSED_RESULT;  
  3. GSList* g_slist_prepend (GSList *list,  
  4.                                           gpointer data) G_GNUC_WARN_UNUSED_RESULT;  
  5. GSList* g_slist_insert (GSList *list,  
  6.                                           gpointer data,  
  7.                                           gint position) G_GNUC_WARN_UNUSED_RESULT;  
  8. GSList* g_slist_insert_sorted (GSList *list,  
  9.                                           gpointer data,  
  10.                                           GCompareFunc func) G_GNUC_WARN_UNUSED_RESULT;  
  11. GSList* g_slist_insert_sorted_with_data (GSList *list,  
  12.  

    相关新闻>>

      发表评论
      请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
      评价:
      表情:
      用户名: 验证码:点击我更换图片
      ?? - ?? - ÝřŝžľŘÝź - TAGąęÇŠ - RSSśŠÔÄ - ??
      Copyright © 2004-2024 上海卓卓网络科技有限公司