#include<iostream> usingnamespace std; intfun4(int a, int b, int c) { int tmp = (((c - b) + ((c - b) >> 31)) >> 1) + b; if (tmp <= a) { if (tmp >= a) return0; else return (fun4(a, tmp + 1, c) * 2 + 1); } else returnfun4(a, b, tmp - 1) * 2; } intmain() { for (int i = 0; i <= 14; i++) { if (fun4(i, 0, 14) == 0) cout << i << " "; } getchar(); }
A binary predicate that takes two elements (of type T) as arguments and returns a bool.
The expression comp(a,b), where comp is an object of this type and a and b are elements in the container, shall return true if a is considered to go before b in the strict weak ordering the function defines.
The priority_queue uses this function to maintain the elements sorted in a way that preserves heap properties (i.e., that the element popped is the last according to this strict weak ordering).
This can be a function pointer or a function object, and defaults to less<T>, which returns the same as applying the less-than operator (a<b).
classSolution { public: intthreeSumClosest(vector<int>& nums, int target){ sort(nums.begin(), nums.end()); int n=nums.size(); int ans = nums[0] + nums[1] + nums[2];