contributed by <jkrvivian
>, <vic85821
>
怎麼產生大量的亂數資料?
input.txt
rand()
產生亂數,範圍為0~2147483647
RAND_MAX
定義在 stdlib.h
0~32767
家裡的windows 7電腦的範圍只有一點點
#include <stdio.h>
#include <time.h>
int main()
{
FILE *fp = fopen("input.txt","w");
long long int size, length = 0;
int counter = 0;
srand(time(NULL));
scanf("%lld",&size);
size *= 1048576; //轉換成byte
while(length <= size){
for(counter = 0; counter < 100; ++counter)
fprintf(fp, "%d\n", rand());
fseek(fp, 0 ,SEEK_END); //計算檔案大小
length = ftell(fp);
}
fclose(fp);
printf("over\n");
return 0;
}
max_cut
的作用 … 拿掉cut_func
與 merge_sort
作用相同 … 擇一使用 phonebook 讀字串的方式實做,而不是integer排序
intptr_t
改成字串
#define MAX_LAST_NAME_LEN 20
typedef char val_t[MAX_LAST_NAME_LEN];
typedef struct node {
val_t data;
int index;
} node_t;
typedef struct llist {
node_t *head;
uint32_t size;
} llist_t;
llist_t *list_new(int size)
{
/*allocate list */
llist_t *list = malloc(sizeof(llist_t));
list->head = malloc(sizeof(node_t) * size);
list->size = 0;
return list;
}
int list_add(llist_t *list, val_t val)
{
node_t e;
strcpy(e.data,val);
e.index = list->size;
list->head[list->size] = e;
list->size++;
return 0;
}
透過 array 實作 merge_sort ,再 merge 的時候會需要一個額外的空間去暫存排序完的資料,造成多餘的記憶體消耗,還在思考要怎麼省去額外的暫存空間就能夠 mergevic85821
不然先實做一般的,若有想到解決辦法還能夠相互比較Vivian
其實重寫程式碼比較快,畢竟原本的思維以 singly-linked list 為主 jserv
網路上有看到利用 swap 交換的作法,但耗時增加vic85821 reference
if( !(_list->head[0].index + _list->size == tmp_list->head[0].index ||
_list->head[0].index == tmp_list->head[0].index + tmp_list->size)) {
task_t *_task = (task_t *) malloc(sizeof(task_t));
_task->func = merge;
_task->arg = _list;
tqueue_push(pool->queue, _task);
pthread_mutex_unlock(&(data_context.mutex));
}
還在思考能不能不管記憶體是否連續而直接mergevic85821
有個想法!!把 task queue 改成 priority queue
priority: cut_func > merge(head[0].index small) > merge(head[0].index large)
這樣可以確保 merge 的 list 是連續的 vic85821可以試試!Vivian
原本的步驟為 讀取資料到 array -> divide -> merge
data > memory malloc avaliale
這樣一來,supermalloc 不就降低了 malloc 彈性高的優點嗎?或許是對於 supermalloc 的理解錯誤!!待查證 vic85821
這完全是不同的事情,一個是 virtual address 定址的範圍 (SuperMalloc 的技巧),另一個是你能否做有效的 random access (sorting on array)。可透過 mmap 搭配之前的 align 技巧,預先映射大量資料到連續的虛擬記憶體區段,再行處理 merge sort jserv
好的!! 我再試試看 謝謝老師!! vic85821[color= #009393]
測試100次, sort 2000筆資料所需時間
system embedded
Team9
or
or
By clicking below, you agree to our terms of service.
New to HackMD? Sign up
Syntax | Example | Reference | |
---|---|---|---|
# Header | Header | 基本排版 | |
- Unordered List |
|
||
1. Ordered List |
|
||
- [ ] Todo List |
|
||
> Blockquote | Blockquote |
||
**Bold font** | Bold font | ||
*Italics font* | Italics font | ||
~~Strikethrough~~ | |||
19^th^ | 19th | ||
H~2~O | H2O | ||
++Inserted text++ | Inserted text | ||
==Marked text== | Marked text | ||
[link text](https:// "title") | Link | ||
 | Image | ||
`Code` | Code |
在筆記中貼入程式碼 | |
```javascript var i = 0; ``` |
|
||
:smile: | ![]() |
Emoji list | |
{%youtube youtube_id %} | Externals | ||
$L^aT_eX$ | LaTeX | ||
:::info This is a alert area. ::: |
This is a alert area. |
On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?
Please give us some advice and help us improve HackMD.
Syncing