⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 subset_source.c

📁 开放gsl矩阵运算
💻 C
字号:
/* sort/subset_source.c   *  * Copyright (C) 1999,2000,2001  Thomas Walter, Brian Gough * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation; either version 2, or (at your option) any * later version. * * This source is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License * for more details. *//* find the k-th smallest elements of the vector data, in ascending order */intFUNCTION (gsl_sort, smallest) (BASE * dest, const size_t k,			       const BASE * src, const size_t stride,                               const size_t n){  size_t i, j;  BASE xbound;  if (k > n)    {      GSL_ERROR ("subset length k exceeds vector length n", GSL_EINVAL);    }  if (k == 0 || n == 0)    {      return GSL_SUCCESS;    }  /* take the first element */  j = 1;  xbound = src[0 * stride];  dest[0] = xbound;  /* examine the remaining elements */  for (i = 1; i < n; i++)    {      size_t i1;      BASE xi = src[i * stride];      if (j < k)	{	  j++;	}      else if (xi >= xbound)	{	  continue;	}      for (i1 = j - 1; i1 > 0 ; i1--)	{          if (xi > dest[i1 - 1])            break;	  dest[i1] = dest[i1 - 1];	}      dest[i1] = xi;      xbound = dest[j-1];    }  return GSL_SUCCESS;}intFUNCTION (gsl_sort_vector,smallest) (BASE * dest, const size_t k,                                      const TYPE (gsl_vector) * v){  return FUNCTION (gsl_sort, smallest) (dest, k, v->data, v->stride, v->size);}intFUNCTION (gsl_sort, largest) (BASE * dest, const size_t k,                              const BASE * src, const size_t stride,                              const size_t n){  size_t i, j;  BASE xbound;  if (k > n)    {      GSL_ERROR ("subset length k exceeds vector length n", GSL_EINVAL);    }  if (k == 0 || n == 0)    {      return GSL_SUCCESS;    }  /* take the first element */  j = 1;  xbound = src[0 * stride];  dest[0] = xbound;  /* examine the remaining elements */  for (i = 1; i < n; i++)    {      size_t i1;      BASE xi = src[i * stride];      if (j < k)	{	  j++;	}      else if (xi <= xbound)	{	  continue;	}      for (i1 = j - 1; i1 > 0 ; i1--)	{          if (xi < dest[i1 - 1])            break;	  dest[i1] = dest[i1 - 1];	}      dest[i1] = xi;      xbound = dest[j-1];    }  return GSL_SUCCESS;}intFUNCTION (gsl_sort_vector,largest) (BASE * dest, const size_t k,                                     const TYPE (gsl_vector) * v){  return FUNCTION (gsl_sort, largest) (dest, k, v->data, v->stride, v->size);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -