C語言實(shí)現(xiàn)文件內(nèi)容按行隨機(jī)排列的算法示例
本文實(shí)例講述了C語言實(shí)現(xiàn)文件內(nèi)容按行隨機(jī)排列的算法。分享給大家供大家參考,具體如下:
在實(shí)際工作上有種需求, 就是需要從給定的數(shù)據(jù)里,隨機(jī)抽取一部分。
有一種簡(jiǎn)單的方法是根據(jù)總的數(shù)據(jù)條數(shù)和要抽取的數(shù)據(jù)條數(shù), 通過簡(jiǎn)單方法,隔幾行取一個(gè),這樣也能達(dá)到隨機(jī)抽取一部分的目的。
但這樣,源數(shù)據(jù)是順序的,則抽取的數(shù)據(jù)也是順序的,不滿足一些情境。
這里實(shí)現(xiàn)的功能是: 將全部數(shù)據(jù),按行重新隨機(jī)排列, 這樣從結(jié)果頭部選幾行,就是隨機(jī)抽取的幾行了,比較方便。
實(shí)現(xiàn)的思路: 對(duì)于N行的數(shù)據(jù), 給每一行用[1-N]之間不重復(fù)的數(shù)做標(biāo)記, 最后按標(biāo)記數(shù)排列即可。(不重復(fù)上要稍微費(fèi)點(diǎn)兒心思)
實(shí)現(xiàn)思路比較重要,實(shí)現(xiàn)就簡(jiǎn)單了~
實(shí)現(xiàn)上用c結(jié)合shell的方式,下面為參考代碼。
總控腳本:用不重復(fù)隨機(jī)數(shù)做標(biāo)記,然后按標(biāo)記排序
#!/bin/sh ### note: sh random.sh in_fname out_fname ### infile=$1 outfile=$2 line_num=`cat $infile | wc -l ` ./random $line_num $infile $outfile.tmp sort $outfile.tmp -k 2 -n -t ' ' | cut -f1 > $outfile
隨機(jī)化的執(zhí)行程序random的實(shí)現(xiàn)
//random.c
#include <string>
#include <iostream>
#include <ctime>
#include <cstdlib>
using namespace std;
const int LEN = 4098;
//返回屬于[p,q)的隨機(jī)整數(shù)
int rand(int p, int q)
{
int size = q-p+1;
return p+ rand()%size;
}
//交換兩個(gè)元素值
void swap(int& a , int& b)
{
int temp = a;
a = b;
b = temp;
}
//打印數(shù)組值
void print(int *v, int n)
{
for(int i=0; i < n ; i++)
{
printf("%u\n", v[i]);
}
}
//給數(shù)組a[n], 隨機(jī)不重復(fù)賦值[1,n]之間的數(shù)
void randomize(int *v, int n)
{
//initialize
for(int i=0; i < n; i++)
{
v[i] = i+1;
}
for(int i=n-1; i>0; i--)
{
int r = rand(0,i+1);
swap(v[r], v[i]);
}
}
//刪除換行符
int chomp(char *str)
{
int len = strlen(str);
while(len > 0 && (str[len - 1] == '\n' || str[len - 1] == '\r'))
{
str[len - 1] = 0;
len--;
}
return len;
}
//主函數(shù)
int main(int argc, char *argv[])
{
int line_num = atoi(argv[1]);
printf("%u\n",line_num);
int *value = (int*)malloc((line_num) * sizeof(int));
printf("%u\n",line_num);
randomize(value, line_num);
//print(value, N);
FILE* infile = fopen(argv[2], "r");
if( infile == NULL )
{
printf("Cann't open file %s.", argv[1]);
return 0;
}
FILE* outfile = fopen(argv[3], "w");
if( outfile == NULL)
{
printf("Cann't open file %s to write.", argv[2]);
return 0;
}
int i=0;
char str[LEN];
str[0] = 0;
str[LEN-1] = 0;
while( !feof(infile) )
{
if( !fgets(str, sizeof(str),infile))
{
break;
}
str[LEN- 1] = 0;
chomp(str);
fprintf(outfile, "%s\t%u\n", str, value[i]);
i++;
}
fclose(infile);
fclose(outfile);
return 0;
}
希望本文所述對(duì)大家C語言程序設(shè)計(jì)有所幫助。
上一篇:C/C++實(shí)現(xiàn)控制臺(tái)輸出不同顏色字體的方法
欄 目:C語言
本文標(biāo)題:C語言實(shí)現(xiàn)文件內(nèi)容按行隨機(jī)排列的算法示例
本文地址:http://www.jygsgssxh.com/a1/Cyuyan/1166.html
您可能感興趣的文章
- 04-02c語言函數(shù)調(diào)用后清空內(nèi)存 c語言調(diào)用函數(shù)刪除字符
- 04-02c語言的正則匹配函數(shù) c語言正則表達(dá)式函數(shù)庫(kù)
- 04-02func函數(shù)+在C語言 func函數(shù)在c語言中
- 04-02c語言中對(duì)數(shù)函數(shù)的表達(dá)式 c語言中對(duì)數(shù)怎么表達(dá)
- 04-02c語言用函數(shù)寫分段 用c語言表示分段函數(shù)
- 04-02c語言編寫函數(shù)冒泡排序 c語言冒泡排序法函數(shù)
- 04-02c語言沒有round函數(shù) round c語言
- 04-02c語言分段函數(shù)怎么求 用c語言求分段函數(shù)
- 04-02C語言中怎么打出三角函數(shù) c語言中怎么打出三角函數(shù)的值
- 04-02c語言調(diào)用函數(shù)求fibo C語言調(diào)用函數(shù)求階乘


閱讀排行
- 1C語言 while語句的用法詳解
- 2java 實(shí)現(xiàn)簡(jiǎn)單圣誕樹的示例代碼(圣誕
- 3利用C語言實(shí)現(xiàn)“百馬百擔(dān)”問題方法
- 4C語言中計(jì)算正弦的相關(guān)函數(shù)總結(jié)
- 5c語言計(jì)算三角形面積代碼
- 6什么是 WSH(腳本宿主)的詳細(xì)解釋
- 7C++ 中隨機(jī)函數(shù)random函數(shù)的使用方法
- 8正則表達(dá)式匹配各種特殊字符
- 9C語言十進(jìn)制轉(zhuǎn)二進(jìn)制代碼實(shí)例
- 10C語言查找數(shù)組里數(shù)字重復(fù)次數(shù)的方法
本欄相關(guān)
- 04-02c語言函數(shù)調(diào)用后清空內(nèi)存 c語言調(diào)用
- 04-02func函數(shù)+在C語言 func函數(shù)在c語言中
- 04-02c語言的正則匹配函數(shù) c語言正則表達(dá)
- 04-02c語言用函數(shù)寫分段 用c語言表示分段
- 04-02c語言中對(duì)數(shù)函數(shù)的表達(dá)式 c語言中對(duì)
- 04-02c語言編寫函數(shù)冒泡排序 c語言冒泡排
- 04-02c語言沒有round函數(shù) round c語言
- 04-02c語言分段函數(shù)怎么求 用c語言求分段
- 04-02C語言中怎么打出三角函數(shù) c語言中怎
- 04-02c語言調(diào)用函數(shù)求fibo C語言調(diào)用函數(shù)求
隨機(jī)閱讀
- 01-10C#中split用法實(shí)例總結(jié)
- 01-11ajax實(shí)現(xiàn)頁(yè)面的局部加載
- 01-10delphi制作wav文件的方法
- 08-05織夢(mèng)dedecms什么時(shí)候用欄目交叉功能?
- 01-11Mac OSX 打開原生自帶讀寫NTFS功能(圖文
- 08-05dedecms(織夢(mèng))副欄目數(shù)量限制代碼修改
- 01-10SublimeText編譯C開發(fā)環(huán)境設(shè)置
- 04-02jquery與jsp,用jquery
- 01-10使用C語言求解撲克牌的順子及n個(gè)骰子
- 08-05DEDE織夢(mèng)data目錄下的sessions文件夾有什


