Given two arrays, write a function to compute their intersection.
Example:
Given nums1 = [1, 2, 2, 1], nums2 = [2, 2], return [2].
Note:
Each element in the result must be unique.
The result can be in any order.
#define HASH_SIZE 100
//hash arrary + linked list
struct listnode{
int val;
int found;
struct listnode *next;
};
int hash_func(int value)
{
return abs(value)%HASH_SIZE;
}
int* intersection(int* nums1, int nums1Size, int* nums2, int nums2Size, int* returnSize) {
struct listnode ** hash = calloc(HASH_SIZE, sizeof(struct listnode*));
int index ;
int * array = calloc(nums1Size<nums2Size?nums1Size:nums2Size, sizeof(int));
int count = 0;
struct listnode * dummyhead;
for(int i = 0 ; i < HASH_SIZE; i++){
hash[i] = malloc(sizeof(struct listnode));
hash[i]->next = NULL;
}
int duplicate = 0;
for(int i = 0 ; i < nums1Size; i++){
index = hash_func(nums1[i]);
dummyhead = hash[index];
struct listnode * node = malloc(sizeof(struct listnode));
node->val = nums1[i];
node->next = NULL;
node->found = 0;
while(dummyhead->next!=NULL){
if(dummyhead->next->val == nums1[i]){
duplicate=1;
break;
}
dummyhead = dummyhead->next;
}
if(duplicate){
free(node);
duplicate = 0;
}else
dummyhead->next = node;
}
for(int i = 0 ; i < nums2Size; i++){
index = hash_func(nums2[i]);
dummyhead = hash[index];
while(dummyhead->next!=NULL){
if(dummyhead->next->val == nums2[i] && dummyhead->next->found == 0){
array[count++] = nums2[i];
dummyhead->next->found = 1 ;
}
dummyhead = dummyhead->next;
}
}
*returnSize = count;
return array;
}
349 intersection of two arrays
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
- 文/潘曉璐 我一進店門右冻,熙熙樓的掌柜王于貴愁眉苦臉地迎上來装蓬,“玉大人,你說我怎么就攤上這事纱扭‰怪悖” “怎么了?”我有些...
- 文/不壞的土叔 我叫張陵乳蛾,是天一觀的道長暗赶。 經(jīng)常有香客問我鄙币,道長,這世上最難降的妖魔是什么蹂随? 我笑而不...
- 正文 為了忘掉前任十嘿,我火速辦了婚禮,結(jié)果婚禮上岳锁,老公的妹妹穿的比我還像新娘绩衷。我一直安慰自己,他們只是感情好激率,可當我...
- 文/花漫 我一把揭開白布咳燕。 她就那樣靜靜地躺著,像睡著了一般乒躺。 火紅的嫁衣襯著肌膚如雪招盲。 梳的紋絲不亂的頭發(fā)上,一...
- 文/蒼蘭香墨 我猛地睜開眼蜕衡,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了设拟?” 一聲冷哼從身側(cè)響起慨仿,我...
- 正文 年R本政府宣布惩系,位于F島的核電站位岔,受9級特大地震影響如筛,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜抒抬,卻給世界環(huán)境...
- 文/蒙蒙 一杨刨、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧擦剑,春花似錦妖胀、人聲如沸。這莊子的主人今日做“春日...
- 文/蒼蘭香墨 我抬頭看了看天上的太陽浇借。三九已至捉撮,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間妇垢,已是汗流浹背巾遭。 一陣腳步聲響...
推薦閱讀更多精彩內(nèi)容
- Intersection of Two Arrays IIGiven two arrays, write a fu...
- Given two arrays, write a function to compute their inter...
- Javascript C++和Java想得太復雜了刚夺,看了下別人的解答 優(yōu)解 Java献丑,用哈希表解決了重復的問題 J...
- Given two arrays, write a function to compute their inter...
- Solution1:Hashset 思路:nums1保存到Hashset,nums2 check有無Time Co...