Deep multimodal subspace clustering network + code implementation

Network Overview (Thesis) Related paper resources: in my resources, please pay attention to me and then download. There are three papers: Deep Subspace Clustering NetworksDeep Multimodal Subspace Clustering NetworksCross-Modal Subspace Clustering via Deep Canonical Correlation Analysis Next, we will explain the multimodal subspace cluste ...

Posted by xphoenixx on Fri, 04 Mar 2022 10:14:04 +0100

Give you "ten years" time, can you crack China's WJLHA algorithm?

WJLHA (full name: Wang Jie lin Hash Algorithm) is a free and open source hash algorithm. The algorithm is based on the weighted probability model theory (basic theory of Jielin code). It is the basic algorithm for China's independent theoretical innovation and application implementation, and has been authorized by China's invention patent. Jeli ...

Posted by pixy on Fri, 04 Mar 2022 08:24:48 +0100

Implement stack with queue

Title Description: Please use only two queues to implement a last in first out (LIFO) stack, and support all four operations of ordinary queues (push, top, pop and empty). Implement MyStack class: void push(int x) pushes element X to the top of the stack. int pop() removes and returns the top of stack element. int top() returns the top elemen ...

Posted by robin on Fri, 04 Mar 2022 04:21:17 +0100

"Sword finger Offer (2nd Edition)" series questions

Sword finger offer brush questions 03 [duplicate number in array] class Solution { public: int findRepeatNumber(vector<int>& nums) { sort(nums.begin(),nums.end()); for(int i=0;i<nums.size();i++) { if(nums[i+1]==nums[i]) { //cout<<nums[i]<<endl; ...

Posted by Cobby on Thu, 03 Mar 2022 23:19:24 +0100

Analysis of several common sorting algorithms of data structure and its implementation in C language

Definition of sorting The process of arranging a given number of data elements into an ordered sequence according to the specified data items is called sorting. Inner sorting The process of reading the data to be sorted into memory at one time and completing the sorting is called internal sorting. External sorting The process of reading the dat ...

Posted by malikah on Thu, 03 Mar 2022 22:16:24 +0100

Rectangular split (two point answer)

subject There is a large rectangle on the plane, with the coordinates of the lower left corner (0,0) and the upper right corner (R,R). The large rectangle contains some small rectangles, which are parallel to the coordinate axis and do not overlap each other. The vertices of all rectangles are integral points. It is required to draw a strai ...

Posted by eyalrosen on Thu, 03 Mar 2022 20:42:42 +0100

Section 8 Number Theory

Greatest common divisor 1. Seeking the Maximum Common Number Euclidean algorithm-rolling Division (a, b) maximum common divisor gcd(a, b) minimum common divisor lcm(a, b) Theoretical basis: gcd(a, b) = gcd(b, a mod b) //Core Code int gcd(int a, int b) { return b > 0 ? gcd(b, a % b) : a; } AcWing 1246. Equal difference series The math ...

Posted by jaddy on Thu, 03 Mar 2022 19:47:08 +0100

Data structure computer test classic exercises AC code and ideas sharing (more than 40000 words)

The final statistical scores of data structure courses offered in university classrooms are generally composed of "offline homework, offline experimental report, machine test and final theoretical examination". The theoretical knowledge of data structure and corresponding experimental reports have been shared with you before. For deta ...

Posted by nineseveninteractive on Thu, 03 Mar 2022 14:16:42 +0100

Question solution of Nanhua University level 19 soft Zhuo trial [code sentence by sentence analysis]

First of all, the official solution of last year is here. You can have a look 19 official explanation of the selection of ruozhuo In my problem solution, I will analyze the code of problem C sentence by sentence as far as I can. Problem C has not been figured out yet Soft Zhuo selects A Taoge to supplement the spirit Soft Zhuo selection A This ...

Posted by NoMansLand on Thu, 03 Mar 2022 14:04:41 +0100

Implementation of NLP statistical word segmentation hidden Markov model

1, HMM word segmentation idea HMM implements word segmentation as a sequence annotation task of words in a string. The basic idea is that each word occupies a certain word formation position (i.e. word position) when constructing a specific word. It is stipulated that each word can only have four word formation positions at most, i.e ...

Posted by roflpwnt on Thu, 03 Mar 2022 13:49:15 +0100